(1)command1;command2
使用";"时,不管command1是否执行成功都会执行command2.
(2)command1 && command2
使用"&&"时,只有command1执行成功后,才会执行command2,否则command2不执行.
(3command1 || command2
使用"||"时,command1执行成功后,不执行command2,否则会执行command2,总之command1和command2总有一条要执行
本文出自 “linux运维” 博客,转载请与作者联系!
原文地址:http://xxr007.blog.51cto.com/10602872/1883152