bash – 如何在shell脚本中启动程序并使shell脚本继续运行,即使程序保持打开状态

前端之家收集整理的这篇文章主要介绍了bash – 如何在shell脚本中启动程序并使shell脚本继续运行,即使程序保持打开状态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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

阅读有关工作控制herehere的更多信息

原文链接:https://www.f2er.com/bash/383640.html

猜你在找的Bash相关文章