Linux基础——shell连接符

命令分隔符 &&并且 ||或者
#command1 ; command2
不管 command1 是否执行成功,都执行command2
#command1 && command2
只有 command1 执行成功,才会执行command2
#command1 || command2
command1执行成功,不执行command2;command1执行不成功,则执行command2

#touch test1 test3
#ls test2 && touch test
无法访问test2。只有ls执行成功,再去执行touch

#ls test2 || touch test2
test2 不成功,则执行 touch
#ls test*
test1 test2 test3

你可能感兴趣的:(Linux基础)