我在Ubuntu上使用bash.我想有一个
shell脚本打开一个程序并继续执行shell脚本的下一行,即使该程序尚未终止.
添加&命令将其放在
后台.
例:
/path/to/foo
/path/to/bar # not executed untill foo is done
/path/to/foo & # in background
/path/to/bar & # executes as soon as foo is started
阅读有关工作控制here和here的更多信息
原文链接:https://www.f2er.com/bash/383640.html