linux shell
o_alpha
这个作者很懒,什么都没留下…
展开
-
【shell】判断文件中是否存在特定字符串,根据结果做不同处理
grep -q "Hello World" test && echo "exist" || echo "not exist"如果test文件中存在"Hello World",则执行echo “exist”否则执行echo "not exist"原创 2020-12-08 15:51:47 · 2745 阅读 · 0 评论 -
2020-12-07 HowTo: Check If a String Exists
https://stackoverflow.com/questions/7522712/how-can-i-check-if-a-command-exists-in-a-shell-scripthttps://www.shellhacks.com/check-if-string-exists/https://www.unix.com/shell-programming-and-scripting/259572-check-if-string-exists-file.htmla="he..原创 2020-12-07 14:32:32 · 104 阅读 · 0 评论 -
【linux shell编程】”未找到命令“
自定义变量赋值语句两侧不能有空格不能这样:A = 1要这样:A=1原创 2020-06-17 21:41:56 · 1886 阅读 · 0 评论