首页 > 代码库 > grep命令详解
grep命令详解
linux中的grep命令主要用于全局搜索,grep家族有三个:grep,egrep,fgerp其中fgerp不支持正则表达式。如果需要搜素字符串,不需要使用元字符,可以用fgerp比较快,grep 文本过滤工具或文本匹配工具,能够实现根据指定的“模式“逐行搜索文件内容,并将匹配到的行显示出来。并不一定是全部匹配。可以与正则表达式的元字符,其他字符组成的匹配条件。
1、命令格式:
grep [option] … ‘PATTERN’ 文件名…………….
[option]选项:
--color :显示颜色。
-v :显示没有被模式匹配到的行,取反。
-o :只显示被模式匹配到的字符串。
-i :不考虑大小写。
-n :顺便输出行号。
2、基本应用
[root@localhost ~]# grep -o "root" /etc/passwd
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd
[root@localhost ~]# grep "\$?" ypbind
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd
[root@localhost ~]# grep ‘cpu‘ /proc/cpuinfo //只显示包含cpu的字符
[root@localhost ~]# grep --color=auto ‘cpu‘ /proc/cpuinfo
[root@localhost ~]# alias grep=‘grep --color‘
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd
[root@localhost ~]# ifconfig | grep ‘inet addr‘ //只显示inet addr项
3、结合cut搜索
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd | cut -d: -f1
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd | cut -d: -f2
[root@localhost ~]# ifconfig | grep ‘inet addr‘ | cut -d: -f1
[root@localhost ~]# ifconfig | grep ‘inet addr‘ | cut -d: -f2
[root@localhost ~]# ifconfig | grep ‘inet addr‘ | cut -d: -f2 | cut -d‘ ‘ -f1
4、结合正则表达式元字符搜索
[root@localhost ~]# grep ‘c.u‘ /proc/cpuinfo //匹配c什么p,单个字符
[root@localhost ~]# grep --color ‘c..‘ /proc/cpuinfo
[root@localhost ~]# grep ‘r..t‘ /etc/passwd
[root@localhost ~]# grep ‘c..[a-z]‘ /proc/cpuinfo //跟了任意2个字符,后面跟了a-z小写字母的
[root@localhost ~]# grep ‘^i‘ /etc/inittab //以i开头的行
[root@localhost ~]# grep ‘w$‘ /etc/inittab //行尾为w的行
[root@localhost ~]# grep ‘b..h$‘ /etc/passwd //b什么h结尾的
[root@localhost ~]# grep ‘\([0-9]\).*\1$‘ inittab
[root@localhost ~]# grep ‘^\([0-9]\).*\1$‘ inittab
[root@localhost ~]# grep ‘^fpu‘ /proc/cpuinfo //显示匹配的fpu开头的行
[root@localhost ~]# grep -A 2 ‘^fpu‘ /proc/cpuinfo //显示匹配的行和下面的2行
[root@localhost ~]# grep --color -B 2 ‘^fpu‘ /proc/cpuinfo //显示匹配的行和上面的2行
[root@localhost ~]# grep --color -C 2 ‘^fpu‘ /proc/cpuinfo //显示匹配的行和上下面的2行 linux中的grep命令主要用于全局搜索,grep家族有三个:grep,egrep,fgerp其中fgerp不支持正则表达式。如果需要搜素字符串,不需要使用元字符,可以用fgerp比较快,grep 文本过滤工具或文本匹配工具,能够实现根据指定的“模式“逐行搜索文件内容,并将匹配到的行显示出来。并不一定是全部匹配。可以与正则表达式的元字符,其他字符组成的匹配条件。
1、命令格式:
grep [option] … ‘PATTERN’ 文件名…………….
[option]选项:
--color :显示颜色。
-v :显示没有被模式匹配到的行,取反。
-o :只显示被模式匹配到的字符串。
-i :不考虑大小写。
-n :顺便输出行号。
2、基本应用
[root@localhost ~]# grep -o "root" /etc/passwd
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd
[root@localhost ~]# grep "\$?" ypbind
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd
[root@localhost ~]# grep ‘cpu‘ /proc/cpuinfo //只显示包含cpu的字符
[root@localhost ~]# grep --color=auto ‘cpu‘ /proc/cpuinfo
[root@localhost ~]# alias grep=‘grep --color‘
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd
[root@localhost ~]# ifconfig | grep ‘inet addr‘ //只显示inet addr项
3、结合cut搜索
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd | cut -d: -f1
[root@localhost ~]# grep ‘dwzhang‘ /etc/passwd | cut -d: -f2
[root@localhost ~]# ifconfig | grep ‘inet addr‘ | cut -d: -f1
[root@localhost ~]# ifconfig | grep ‘inet addr‘ | cut -d: -f2
[root@localhost ~]# ifconfig | grep ‘inet addr‘ | cut -d: -f2 | cut -d‘ ‘ -f1
4、结合正则表达式元字符搜索
[root@localhost ~]# grep ‘c.u‘ /proc/cpuinfo //匹配c什么p,单个字符
[root@localhost ~]# grep --color ‘c..‘ /proc/cpuinfo
[root@localhost ~]# grep ‘r..t‘ /etc/passwd
[root@localhost ~]# grep ‘c..[a-z]‘ /proc/cpuinfo //跟了任意2个字符,后面跟了a-z小写字母的
[root@localhost ~]# grep ‘^i‘ /etc/inittab //以i开头的行
[root@localhost ~]# grep ‘w$‘ /etc/inittab //行尾为w的行
[root@localhost ~]# grep ‘b..h$‘ /etc/passwd //b什么h结尾的
[root@localhost ~]# grep ‘\([0-9]\).*\1$‘ inittab
[root@localhost ~]# grep ‘^\([0-9]\).*\1$‘ inittab
[root@localhost ~]# grep ‘^fpu‘ /proc/cpuinfo //显示匹配的fpu开头的行
[root@localhost ~]# grep -A 2 ‘^fpu‘ /proc/cpuinfo //显示匹配的行和下面的2行
[root@localhost ~]# grep --color -B 2 ‘^fpu‘ /proc/cpuinfo //显示匹配的行和上面的2行
[root@localhost ~]# grep --color -C 2 ‘^fpu‘ /proc/cpuinfo //显示匹配的行和上下面的2行
例子:
1、显示文件去除掉空白行:
[root@localhost ~]# grep -v "^$" /etc/httpd/conf/httpd.conf
2、显示文件去除掉#注释行:
[root@localhost ~]# grep -v "#" /etc/httpd/conf/httpd.conf
3、显示去除掉注释行和空白行:
[root@localhost ~]# grep -v "#" /etc/httpd/conf/httpd.conf | grep -v "^$"
例子:
1、显示文件去除掉空白行:
[root@localhost ~]# grep -v "^$" /etc/httpd/conf/httpd.conf
2、显示文件去除掉#注释行:
[root@localhost ~]# grep -v "#" /etc/httpd/conf/httpd.conf
3、显示去除掉注释行和空白行:
[root@localhost ~]# grep -v "#" /etc/httpd/conf/httpd.conf | grep -v "^$"
本文出自 “11628205” 博客,请务必保留此出处http://11638205.blog.51cto.com/11628205/1917198
grep命令详解