grep命令

grep的作用是在文件中提取和匹配符合条件的字符串行。命令格式如下:
[root@localhost ~]# grep [选项] "搜索内容" 文件名
选项:
-i: 忽略大小写
-n: 输出行号
-v: 反向查找
--color=auto: 搜索出的关键字用颜色显示

grep命令如果需要模糊查询,则使用正则表达式进行匹配,正则表达式是包含匹配。
grep命令_第1张图片

例:

1、查找显示 httpd.conf下含DocementRoot字符串的行

grep DocumentRoot /etc/httpd/conf/httpd.conf

 2、查找显示 httpd.conf下以DocementRoot字符串结尾的行

grep "DocumentRoot."$ /etc/httpd/conf/httpd.conf

 3、查找显示含字串重复2个o以上的行,

grep "ooo*" /etc/httpd/conf/httpd.conf

grep命令_第2张图片

 4、查找显示以server开头的行,忽略大小写,显示行号

grep ^"server" -in  /etc/httpd/conf/httpd.conf

5、与find命令配合使用

查找所有含httpd.conf和文件,并显示行业文件属性

find / -name "*.conf" -exec ls -lh {} \; | grep httpd.conf
grep命令_第3张图片

 

你可能感兴趣的:(Centos,运维)