Linux grep -q用法示例详解
A-刘晨阳 人气:0Linux grep命令用于查找文件里符合条件的字符串。
grep指令用于查找内容包含指定的范本样式的文件,如果发现某文件的内容符合所指定的范本样式,预设grep指令会把含有范本样式的那一列显示出来。若不指定任何文件名称,或是所给予的文件名为"-",则grep指令会从标准输入设备读取数据。
grep -q 简介
用于if逻辑判断 安静模式,不打印任何标准输出。如果有匹配的内容则立即返回状态值0。
用法
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
加载全部内容