linux – 从另一个脚本运行bash脚本,而不用等待脚本完成执行?

前端之家收集整理的这篇文章主要介绍了linux – 从另一个脚本运行bash脚本,而不用等待脚本完成执行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Is it possible for bash commands to continue before the result of the previous command?6
有没有办法执行两个bash脚本没有第一个阻止?以下不起作用:
exec ./script1.sh #this blocks!
exec ./script2.sh

解决方法

放&在行尾.
exec ./script1.sh & #this doesn't blocks!
exec ./script2.sh
原文链接:/linux/393767.html

猜你在找的Linux相关文章