快速业务通道

linux shell 脚本之深入浅出的grep的用法

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-03-27

今天在纠结grep用法时候,讲解的教材比较少,纠结了较长的时间.最终还是攻下了,拿出来给大家分享.

grep

显示匹配一个或多个模式的文本行,时常会作为管道后的第一步,以便对匹配上的数据做进一步处理.

最常见用法,查询文件内字符串

[root@localhost /]# grep root /etc/shadow
root:$1$HFDnk5hm$DSAc4IUls1yUyocXFNQ.A.:15141:0:99999:7:::
[root@localhost /]#

参数

-E 使用扩展正则表达式进行匹配,使用grep –E 代替传统的扩展正则表达式 egrep

扩展正则表达式和正则表达式的区别: (-E选项的作用)

匹配一个或多个先前的字符

[root@localhost space]# touch test

[root@localhost space]# vim test
aaaredhat
bbbredhat
yyyredhat
zzzredhat
redhataaa
redhatbbb
redhatyyy
redhatzzz
:wq

[root@localhost space]# cat test|grep –E ''[a-h] redhat''
aaaredhat
bbbredhat
[root@localhost space]#

[root@localhost space]# cat test|grep -E ''redhat [h-z]''
redhatyyy
redhatzzz
[root@localhost space]#

当去掉-E选项的时候,正则表达式是不支持这样查询的.
[root@localhost space]# cat test|grep ''redhat [a-z]''
[root@localhost space]#

? 匹配零个或多个先前的字符

[root@localhost space]# cat test|grep -E ''r?aaa''
aaaredhat
redhataaa
[root@localhost space]# cat test|grep ''r?aaa''
[root@localhost space]#

a|b|c 匹配a或b或c

[root@localhost space]# cat test|grep -E ''b|z''
bbbredhat
zzzredhat
redhatbbb
redhatzzz
[root@localhost space]# cat test|grep ''b|z''
[root@localhost space]#

() 分组符号

[root@localhost space]# cat test|grep -E ''redha(tz|ta)''
redhataaa
redhatzzz
[root@localhost space]# cat test|grep ''redha(tz|ta)''
[root@localhost space]#

x{m} 重复字符x,至少m次 (如果用正则表达式,格式为x\{m,\})

[root@localhost space]# cat test|grep -E ''a{3}''
aaaredhat
redhataaa
[root@localhost space]# cat test|grep ''a\{3,\}''
aaaredhat
redhataaa
[root@localhost space]#

-F 使用固定字符串进行匹配 grep –F 取代传统的 fgrep . 使用正则表达式; 默认情况下 grep 使用的就是正则表达式,grep = grep –F

-e 通常,第一个非选项的参数会指定要匹配的模式,这个模式以-号开头时,grep就会混淆,而-e选项就将它确定为参数

[root@localhost space]# cat test|grep -e ''-test''
-test
[root@localhost space]# cat test|grep ''-test''
grep:无效选项 -- t
Usage: grep [OPTION]... PATTERN [FILE]...
Try `grep --help'' for more information.
[root@localhost space]#

-i 模式匹配时,忽略大小写

[root@localhost space]# cat test|grep -i test
-test
-TEST
[root@localhost space]#

-l 列出匹配模式的文件名称 (列出当前目录下含有test字符串的文件)

[root@localhost space]# grep -l ''test'' ./*
./test
./test2
[root@localhost space]#

-q 静默模式,如果匹配成功,则grep会离开,不显示匹配.

[root@localhost space]# grep test ./test
-test
[root@localhost space]# grep -q test ./test
[root@localhost space]#

-s 不显示错误信息

-v 显示不匹配的项

[root@localhost space]# cat test|grep test
-test
[root@localhost space]# cat test|grep -v test
-TEST

[root

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号