Come si possono eseguire più programmi in background con un singolo comando?
Ho provato i comandi seguenti, ma non funzionano.
nohup ./script1.sh & && nohup ./script2.sh &
-bash: syntax error near unexpected token '&&'
nohup ./script1.sh & ; nohup ./script2.sh &
-bash: syntax error near unexpected token ';'