天天看點

grep比對含有特定字元串的行

檔案内容為

1

2

3

4

5

6

<code>root@oldboy test$cat file </code>

<code>1oot</code>

<code>2oot</code>

<code>root</code>

<code>zoot</code>

<code>ztrp</code>

現要比對出含有"oot"的所有行,總結以下幾種方法,僅供參考。

7

8

9

10

11

12

13

14

15

16

17

18

19

20

<code>root@oldboy test$grep [0-9,a-z]oot file                 </code>

<code>root@oldboy test$grep [0-9\|a-z]oot file                           </code>

<code>root@oldboy test$grep [[:lower:],[:digit:]]oot file                </code>

<code>root@oldboy test$grep [[:alnum:]]oot file                                     </code>

其中[:alnum:]表示任意一個字母或數字字元,[:lower:]表示小寫字母,[:digit:]表示一個數字

本文轉自 xoyabc 51CTO部落格,原文連結:http://blog.51cto.com/xoyabc/1695526,如需轉載請自行聯系原作者

繼續閱讀