🍁博主简介
🏅云计算领域优质创作者
🏅华为云开发者社区专家博主
🏅阿里云开发者社区专家博主
💊交流社区:运维交流社区 欢迎大家的加入!
grep -q 简介
用于if逻辑判断 安静模式,不打印任何标准输出。如果有匹配的内容则立即返回状态值0。文章来源:https://www.toymoban.com/news/detail-708725.html
用法
grep -q 参数[索要查找的内容] 文件名
实例
实例1
[root@localhost ~]# cat a.txt ## 测试数据
d e j
s q u
z c b
[root@localhost ~]# grep "s" a.txt ## 直接输出匹配结果
s q u
[root@localhost ~]# echo $? ## 输出0表示匹配成功
0
[root@localhost ~]# grep -q "s" a.txt ## -q选项表示静默输出
[root@localhost ~]# echo $? ## 输出0表示匹配成功
0
实例2
[root@localhost ~]# cat a.txt ## 测试数据
nihao
nihaooo
hello
[root@localhost ~]# grep hello a.txt ## 直接输出匹配结果
hello
[root@localhost ~]# echo $? ## 输出0表示匹配成功
0
[root@localhost ~]# grep -q hello a.txt ## -q选项表示静默输出
[root@localhost ~]# echo $? ## 输出0表示匹配成功
0
#判断是否查找到hello文字,如果有则输出yes,没有则输出no;使用静默输出
[root@localhost ~]# if grep -q hello a.txt ; then echo yes;else echo no; fi
yes
[root@localhost ~]# if grep -q word a.txt; then echo yes; else echo no; fi
no
文章来源地址https://www.toymoban.com/news/detail-708725.html
到了这里,关于【Linux】grep -q用法详解的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!