实例详解Linux 中的命令链接操作符
&&与||配合
eg: cattest.sh #!/bin/bash [-e/etc/hosts]&&echo"ok"||echo"fail" bashtest.sh ok eg: cattest.sh #!/bin/bash [-e/etc/hostssssss]&&echo"ok"||echo"fail" bashtest.sh fail 注意这里&&必须在||之前
命令合并操作符{}
[-f/home/tecmint/Downloads/xyz1.txt]||{touch/home/tecmint/Downloads/xyz.txt;echo"Thefiledoesnotexist"} “Thefiledoesnotexist”
总结
以上所述是小编给大家介绍的Linux中的命令链接操作符,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!