参见英文答案 >
Is it possible for bash commands to continue before the result of the previous command?6
有没有办法执行两个bash脚本没有第一个阻止?以下不起作用:
有没有办法执行两个bash脚本没有第一个阻止?以下不起作用:
exec ./script1.sh #this blocks! exec ./script2.sh
解决方法
放&在行尾.
exec ./script1.sh & #this doesn't blocks! exec ./script2.sh