当前位置:   首页安装配置命令操作:实例详解Linux 中的命令链接操作符

命令操作:实例详解Linux 中的命令链接操作符

发布日期:2021-11-19 18:09 | 文章来源:CSDN

&& 与 || 配合

eg:
cat test.sh 
#!/bin/bash
[ -e /etc/hosts ] && echo "ok" || echo "fail"
bash test.sh 
ok
eg:
cat test.sh 
#!/bin/bash
[ -e /etc/hostssssss ] && echo "ok" || echo "fail"
bash test.sh 
fail
注意这里 && 必须在 || 之前

命令合并操作符 {}

[ -f /home/tecmint/Downloads/xyz1.txt ] || {touch /home/tecmint/Downloads/xyz.txt; echo "The file does not exist"}
“The file does not exist”

总结

以上所述是小编给大家介绍的Linux 中的命令链接操作符,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对本站网站的支持!

联系我们
关于使用场景和技术架构的更多咨询,请联系我们的销售和技术支持团队。
Yingsoo Host

在线
客服

在线客服:7*24小时在线

客服
热线

400-630-3752
7*24小时客服服务热线

关注
微信

关注官方微信
顶部