如何在 unix 中并行和顺序执行 bash 脚本
我有 3 个 shell 脚本 a.sh、b.sh 和 c.sh。脚本 a.sh 和 b.sh 将并行运行,脚本 c.sh 仅应在 a.sh 和 b.sh 成功运行时运行(退出代码为 0)。
下面是我的代码。并行执行工作正常,但 c.sh 的顺序执行是无序的。即使两个脚本都没有返回退出代码 0,它也会在 a.sh 和 b.sh 完成后执行。下面是使用的代码。
#!/bin/sh
A.sh &
B.sh &
wait &&
C.sh
如何改变它以满足我的要求?
I have 3 shell scripts a.sh, b.sh and c.sh. the scripts a.sh and b.sh are to be run parallely and script c.sh should only run if a.sh and b.sh are run successfully ( with exit code 0).
Below is my code. The parallel execution is working fine but sequential execution of c.sh is out of order. It is executing after completion of a.sh and b.sh even if both the scripts are not returning exit codes 0. Below is the code used.
#!/bin/sh
A.sh &
B.sh &
wait &&
C.sh
How this can be changed to meet my requirement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嘿,我做了一些测试,在我的 a.sh 中,我有一个退出 255,在我的 b.sh 中,我有一个退出 0,只有当两者的退出代码都为 0 时,它才会执行 c.sh。
Hey i did some testing, in my a.sh i had an exit 255, and in my b.sh i had an exit 0, only if both had an exitcode of 0 it executed c.sh.
你可以试试这个:
you can try this :