grep -q 用于if 逻辑判断

回复 收藏
今天突然发现grep -q 用于if 逻辑判断很好用。
-q 参数,本意是 Quiet; do not write anything to standard output.  Exit immediately with zero status if any match is found, even if an error was detected.   中文意思为,安静模式,不打印任何标准输出。如果有匹配的内容则立即返回状态值0。

小应用

# cat a.txt
nihao
nihaooo
hello

#  if  grep -q hello a.txt ; then echo yes;else echo no; fi
yes
# if grep -q word a.txt; then echo yes; else echo no; fi
no
2010-12-24 11:17 举报
已邀请:
0

赞同来自:

get
0

赞同来自:

0

googleqicq

赞同来自:

这个不错
0

mind_sky

赞同来自:

学习
0

tytywu

赞同来自:

grep -q '字符串'检测此字符串在文档中是否存在,返回yes /no
0

18600230492

赞同来自:

比较适合做判断用

0

陈洪良

赞同来自:

还不错

回复帖子,请先登录注册

退出全屏模式 全屏模式 回复
评分
可选评分理由: