shell中;;&&&之间的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell中;;&&&之间的区别相关的知识,希望对你有一定的参考价值。

;;:

command1;command2...

--不管command1命令是否执行成功,command2命令都执行。


&:

command1&command2...

--command1命令和command2命令同时执行


&&:

command1&&command2...

--只在command1命令执行后,才执行command2命令。

以上是关于shell中;;&&&之间的区别的主要内容,如果未能解决你的问题,请参考以下文章

运行 adb shell 命令时 #adb shell 与 #adb -e shell 之间的区别

Shell 脚本:“local foo”和“local foo=”之间有区别吗?

shell与Linux命令有什么区别?它们之间有联系吗?

shell变量与C语言变量之间在用法上有啥区别

shell和shell脚本 有啥区别啊

Linux shell中,双引号"",单引号'',反引号``之间的区别