- 博客园
- 首页
- 新随笔
- 联系
- 管理
- 订阅
随笔- 556 文章- 37 评论- 778
grep(global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,能使用正则表达式搜索文本,并把匹配的行打印出来。grep主要作用是过滤出指定的行,指定的行满足什么条件,满足的条件可配合正则表达式来表示,实现强大的文本处理。
文本处理工具分类 常用的有:grep,egrep,fgrep。
三者区别grep: 在没有参数的情况下,只输出符合RE(Regular expression)字符。egrep:等同于grep -E,和grep最大的区别就是表现在转义符上, 比如grep 做次数匹配时{n,m}, egrep则不需要直接{n,m}。egrep显得更方便简洁。fgrep:等同于grep -f,但是不能使用正则表达式。所有的字符匹配功能均已消失。
grep格式 grep [option] pattern filename
grep的option选项说明
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
grep正则表达式元字符集(基本集)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
POSIX字符类 (注意使用的时候,外面要套一层中括号才能生效) 为了在不同国家的字符编码中保持一致,POSIX(The Portable Operating System Interface)增加了特殊的字符类,如[:alnum:]是A-Za-z0-9的另一个写法。要把它们放到[]号内才能成为正则表达式,如[A- Za-z0-9]或[[:alnum:]]。在linux下的grep除fgrep外,都支持POSIX的字符类。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
grep引号使用问题
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
grep -E 与 grep -P区别 [ 正则中的 ?= 、?<= 、?! 、?<! ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
grep 常用操作技巧 1)在文件中搜索一个单词,命令会返回一个包含"match_pattern"的文本行: [root@test ~]# grep match_pattern file_name 2)在多个文件中查找: [root@test ~]# grep "match_pattern" file_1 file_2 file_3 ... 3)输出除之外的所有行 -v 选项: [root@test ~]# grep -v "match_pattern" file_name 4)标记匹配颜色 --color=auto 选项: [root@test ~]# grep "match_pattern" file_name --color=auto 5)使用正则表达式 -E 选项: [root@test ~]# grep -E "[1-9]+" 或 [root@test ~]# egrep "[1-9]+" 6) 只输出文件中匹配到的部分 -o 选项: [root@test ~]# echo this is a test line. | grep -o -E "[a-z]+." line. [root@test ~]# echo this is a test line. | egrep -o "[a-z]+." line. 7)统计文件或者文本中包含匹配字符串的行数 -c 选项: [root@test ~]# grep -c "text" file_name 8)输出包含匹配字符串的行数 -n 选项: [root@test ~]# grep "text" -n file_name 或 [root@test ~]# cat file_name | grep "text" -n 9)多个文件 [root@test ~]# grep "text" -n file_1 file_2 10)打印样式匹配所位于的字符或字节偏移: [root@test ~]# echo gun is not unix | grep -b -o "not" 7:not #一行中字符串的字符便宜是从该行的第一个字符开始计算,起始值为0。选项 -b -o 一般总是配合使用。 11)搜索多个文件并查找匹配文本在哪些文件中: [root@test ~]# grep -l "text" file1 file2 file3...
grep递归搜索文件 12)在多级目录中对文本进行递归搜索: [root@test ~]# grep "text" . -r -n .表示当前目录。 13)忽略匹配样式中的字符大小写: [root@test ~]# echo "hello world" | grep -i "HELLO" hello 14)选项 -e 制动多个匹配样式: [root@test ~]# echo this is a text line | grep -e "is" -e "line" -o is is line 15)也可以使用-f选项来匹配多个样式,在样式文件中逐行写出需要匹配的字符。 [root@test ~]# cat patfile aaa bbb [root@test ~]# echo aaa bbb ccc ddd eee | grep -f patfile -o
在grep搜索结果中包括或者排除指定文件 16)只在目录中所有的.php和.html文件中递归搜索字符"main()" [root@test ~]# grep "main()" . -r --include *.{php,html} 17)在搜索结果中排除所有README文件 [root@test ~]# grep "main()" . -r --exclude "README" 18)在搜索结果中排除filelist文件列表里的文件 [root@test ~]# grep "main()" . -r --exclude-from filelist 19)使用0值字节后缀的grep与xargs: #测试文件: [root@test ~]# echo "aaa" > file1 [root@test ~]# echo "bbb" > file2 [root@test ~]# echo "aaa" > file3 [root@test ~]# grep "aaa" file* -lZ | xargs -0 rm 20)执行后会删除file1和file3,grep输出用-Z选项来指定以0值字节作为终结符文件名(0),xargs -0 读取输入并用0值字节终结符分隔文件名,然后删除匹配文件,-Z通常和-l结合使用。"grep -q"用于if逻辑判断,特别好用!-q 参数意为安静模式,不打印任何标准输出。如果有匹配的内容则立即返回状态值0。 grep -q 静默输出: [root@test ~]# grep -q "test" filename 不会输出任何信息,如果命令运行成功返回0,失败则返回非0值。一般用于if条件测试。
1
2
3
4
5
6
7
8
9
10
打印出匹配文本之前或者之后的行 21)显示匹配某个结果之后的3行,使用 -A 选项: [root@test ~]# seq 10 | grep "5" -A 3 5 6 7 8 22)显示匹配某个结果之前的3行,使用 -B 选项: [root@test ~]# seq 10 | grep "5" -B 3 2 3 4 5 23)显示匹配某个结果的前三行和后三行,使用 -C 选项: [root@test ~]# seq 10 | grep "5" -C 3 2 3 4 5 6 7 8 24)如果匹配结果有多个,即多重匹配的话,中间会用"--"作为各匹配结果之间的分隔符: [root@test ~]# echo -e "a b c a b c" | grep a -A 1 a b -- a b [root@test ~]# grep "match_pattern" file_name
grep同时筛选多个条件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
grep精确匹配关键字符 使用grep搜索某个关键字时,默认搜索出来的是所有包含该关键字的行,如下: 搜索/var/named/veredholdings.cn_zone文件中172.16.50.24所在的行,默认会把所有包括172.16.50.24所在的行打印出来。 [root@uatdns01 ~]# cat /var/named/veredholdings.cn_zone|grep 172.16.50.24 devzl-app01 IN A 172.16.50.243 devzl-app02 IN A 172.16.50.244 devzl-redis01 IN A 172.16.50.245 devzl-redis02 IN A 172.16.50.246 devzl-redis03 IN A 172.16.50.247 devzl-oracle01 IN A 172.16.50.242 wiki02 IN A 172.16.50.24
[root@uatdns01 ~]# cat /var/named/veredholdings.cn_zone|grep 172.16.50.24 --color devzl-app01 IN A 172.16.50.243 devzl-app02 IN A 172.16.50.244 devzl-redis01 IN A 172.16.50.245 devzl-redis02 IN A 172.16.50.246 devzl-redis03 IN A 172.16.50.247 devzl-oracle01 IN A 172.16.50.242 wiki02 IN A 172.16.50.24
[root@uatdns01 ~]# cat /var/named/veredholdings.cn_zone|grep -o 172.16.50.24 172.16.50.24 172.16.50.24 172.16.50.24 172.16.50.24 172.16.50.24 172.16.50.24 172.16.50.24
要想精确地搜索出文件中某个单词所在的行,而不是打印所有包括该单词字样的行,可以使用grep -w参数 -w(--word-regexp):表示强制PATTERN仅完全匹配字词 [root@uatdns01 ~]# cat /var/named/veredholdings.cn_zone|grep -w 172.16.50.24 wiki02 IN A 172.16.50.24 或者使用使用<>单字边界也可以实现精确匹配(注意两边要加上双引号) [root@uatdns01 named]# cat /var/named/veredholdings.cn_zone|grep "<172.16.50.24>" wiki02 IN A 172.16.50.24 或者使用单词锁定符b也可以实现精确匹配。 [root@uatdns01 named]# cat /var/named/veredholdings.cn_zone|grep "b172.16.50.24b>" wiki02 IN A 172.16.50.24
两个小面试题 1)精确地找出名为abc的进程名。 # ps -ef|grep -w "abc" 或者 # ps -ef|grep "<abc>" 或者 # ps -ef|grep "babcb" 2)判断该进程的数量是否在3-5之间。 # ps -ef|grep -w abc|wc -l 或者 # ps -ef|grep "<abc>"|wc -l
小示例1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
小示例2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
grep高效搜索用法大全
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
本文地址:http://sicmodule.glev.cn/news/10107.html 歌乐夫 http://sicmodule.glev.cn/ , 查看更多
- 1001每日一字 | 动
- 1002云南省考行测每日一练
- 1003小红书推广怎么做?看过这篇就够了!
- 1004小红书涨粉秘诀:轻松获取大量粉丝的策略
- 1005百度推广点击率低该如何优化?首先弄清楚这两点……
- 1006考研风口新专业
- 1007【农经观察】海东平安:数字经济赋能乡村振兴
- 100830亿“救命钱”来了!金科,白衣骑士揭晓!
- 1009徐祖远:大数据时代背景下港航业未来发展趋势