赞
踩
;
失败
,后面的命令也会执行
[root@k8s-master ~]# haha ; echo "ok...."
-bash: haha: command not found
ok....
&&
成功
,后面的命令才执行
[root@k8s-master ~]# touch 1 && echo "ok..."
ok...
||
执行后面的命令
[root@k8s-master ~]# ll /11/22/33 || mkdir -p /11/22/33
ls: cannot access /11/22/33: No such file or directory
[root@k8s-master ~]# ll /11/22/33
total 0
[root@k8s-master ~]# ping -c1 1.2.3.4 &>/dev/null && echo "up" || echo "down"
down
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。