Jak można uruchomić wiele programów w tle za pomocą jednego polecenia?
Próbowałem poniższych poleceń, ale one nie działają.
nohup ./script1.sh & && nohup ./script2.sh &
-bash: syntax error near unexpected token '&&'
nohup ./script1.sh & ; nohup ./script2.sh &
-bash: syntax error near unexpected token ';'