码迷,mamicode.com
首页 > 其他好文 > 详细

grep过滤用法介绍(三)

时间:2017-03-20 10:59:35      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:linux grep color 过滤 egrep e

grep过滤用法介绍(三)

egrep是grep的扩展形式,grep能用的,egrep都能用

grep --color ‘r\?o‘ 1.txt

egrep --color ‘r?o‘ 1.txt

这两式子相等,也就是说?或者+这样的特殊符号在egrep这里不需要脱义!,截图如下:

技术分享

grep -E==egrep

egrep用法小结:

1、 egrep --color ‘root|nologin‘ 1.txt

技术分享

#head -n3 1.txt |egrep --color -n ‘root|nologin‘

这里的|是或者的意思,包含root或者nologin的所在行

2、如何表示并且,这里不能用&,只能用|管道符号

egrep --color ‘root‘ 1.txt |egrep --color ‘nologin‘

技术分享

这里没有特殊符号用grep也是可以的!

3、 egrep --color ‘(rr)+‘ 1.txt

这里的(rr)表示一个整体

+一个或者多个rr

4、egrep --color ‘(rr){1,2}‘ 1.txt

这里的{}表示范围,包含1次rr,2次rr的所在行

技术分享

按最小的算,如{1,9},就算没有9次的,只有7次的,也都会匹配到,只要包含1次rr!

总结:

  • ?+(){} | 这些特殊符号grep需要脱义

  • 或者grep -E

  • 或者egrep直接使用

  • ()表示整体

  • {}表示范围次数

  • |在‘’里面表示或者,在‘’外面表示管道符。




本文出自 “吴腾飞” 博客,请务必保留此出处http://wutengfei.blog.51cto.com/10942117/1908223

grep过滤用法介绍(三)

标签:linux grep color 过滤 egrep e

原文地址:http://wutengfei.blog.51cto.com/10942117/1908223

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!