如何在 unix 中并行和顺序执行 bash 脚本

发布于 2025-01-12 19:25:29 字数 297 浏览 0 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

無處可尋 2025-01-19 19:25:29
    #!/bin/bash
    ./a.sh & a=$!
    ./b.sh & b=$!
    
    if wait "$a" && wait "$b"; then
      ./c.sh
    fi

嘿,我做了一些测试,在我的 a.sh 中,我有一个退出 255,在我的 b.sh 中,我有一个退出 0,只有当两者的退出代码都为 0 时,它才会执行 c.sh。

    #!/bin/bash
    ./a.sh & a=$!
    ./b.sh & b=$!
    
    if wait "$a" && wait "$b"; then
      ./c.sh
    fi

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.

缪败 2025-01-19 19:25:29

你可以试试这个:

.....
wait &&
    if [ -z "the scripts a.sh or any commande u need  " ] 
    then
       #do something
       C.sh
    fi

you can try this :

.....
wait &&
    if [ -z "the scripts a.sh or any commande u need  " ] 
    then
       #do something
       C.sh
    fi
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文