叶子的小屋
首页
登录
shell脚本并发执行
2019-1-16 admin
sh a.sh &
sh b.sh &
sh c.sh &
wait
sh d.sh
exit
这样就可以让 a.sh b.sh c.sh并行执行