实例详解Linux 中的命令链接操作符
吾爱主题
阅读:194
2024-04-05 13:54:40
评论:0
&& 与 || 配合
?1 2 3 4 5 6 7 8 9 10 11 12 13 | 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 注意这里 && 必须在 || 之前 |
命令合并操作符 {}
?1 2 | [ -f /home/tecmint/Downloads/xyz1 .txt ] || { touch /home/tecmint/Downloads/xyz .txt; echo "The file does not exist" } “The file does not exist” |
总结
以上所述是小编给大家介绍的Linux 中的命令链接操作符,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:https://www.cnblogs.com/klvchen/archive/2018/08/07/9435170.html
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。