文件内容为
1
2
3
4
5
6
|
root@oldboy test$cat file
1oot
2oot
root
zoot
ztrp
|
现要匹配出含有"oot"的所有行,总结以下几种方法,仅供参考。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
root@oldboy test$grep [0-9,a-z]oot file
1oot
2oot
root
zoot
root@oldboy test$grep [0-9\|a-z]oot file
1oot
2oot
root
zoot
root@oldboy test$grep [[:lower:],[:digit:]]oot file
1oot
2oot
root
zoot
root@oldboy test$grep [[:alnum:]]oot file
1oot
2oot
root
zoot
|
其中[:alnum:]表示任意一个字母或数字字符,[:lower:]表示小写字母,[:digit:]表示一个数字
本文转自 xoyabc 51CTO博客,原文链接:http://blog.51cto.com/xoyabc/1695526,如需转载请自行联系原作者