Linux下多个命令的组合方式小结

时间:2022-09-24 15:42:58

1.多个command组合的方式:

        a)command1 ; command2

        command1执行完之后,不管失败与否,都将开始执行command2。如果没有set -e这样的设置,command1 ; command2之后的shell语句会继续执行。

        b)command1 && command2

        当command1执行完毕之后,且回传码是0,才会执行command2。如果没有set -e这样的设置,command1 && command2之后的shell语句会继续执行。

        c)command1 || command2

       当command1执行完毕之后,且回传码是不等于0,才会执行command2。如果没有set -e这样的设置,command1 || command2之后的shell语句会继续执行。

        d)command1 | command2 

       这个是管道命令啦,如果没有set -e这样的设置,command1 | command2之后的shell语句会继续执行。

 

》》》》未完待续