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 之间的区别