Comment peut-on exécuter plusieurs programmes en arrière-plan avec une seule commande?
J'ai essayé les commandes ci-dessous, mais elles ne fonctionnent pas.
nohup ./script1.sh & && nohup ./script2.sh &
-bash: syntax error near unexpected token '&&'
nohup ./script1.sh & ; nohup ./script2.sh &
-bash: syntax error near unexpected token ';'