如何用一个命令在后台运行多个程序?
我已经尝试过下面的命令,但是它们不起作用。
nohup ./script1.sh & && nohup ./script2.sh &
-bash: syntax error near unexpected token '&&'
nohup ./script1.sh & ; nohup ./script2.sh &
-bash: syntax error near unexpected token ';'
什么是单个“命令”?一巴掌?
—
Oluf Lorenzen 2013年
我可能会遗漏一些明显的东西,但是&&意味着知道上一个命令的退出代码。如果您将其作为背景,则退出代码将未知。那里的功能需求是什么?
—
Richlv