grep 常用选项讲解

转自:https://www.cnblogs.com/tlnshuju/p/7106790.html

1. grep最简单的用法,匹配一个词:grep word filename

2. 能够从多个文件里匹配:grep word filename1 filenam2 filename3

3. 能够使用正則表達式匹配:grep -E pattern f1 f2 f3...

4. 能够使用-o仅仅打印匹配的字符,例如以下所看到的:

lichao@ubuntu:command$ echo this is a line. | grep -E -o "[a-z]*\."

line.

5. 打印除匹配行之外的其它行,使用-v

lichao@ubuntu:command$ echo -e "1\n2\n3\n4" | grep -v -E "[1-2]"

3

4

6. 统计匹配字符串的行数。使用-c

lichao@ubuntu:command$ echo -e "1111\n2222" | grep -E "[1-2]" -c

2

7. 假设我们统计字符串模式匹配的次数。能够结合-o和-c。例如以下:

lichao@ubuntu:command$ echo -e "1111\n2222" | grep -o -E "[1-2]"  | wc -l

8

8. 假设须要显示行号,能够打开-n,例如以下:

lichao@ubuntu:command$ echo -e "1111\n2222\n33333\n44444" | grep -n -E "3"

3:33333

9. -b选项能够打印出匹配的字符串想对于其所在的行起始位置的偏移量(从0開始)。通常配合-o使用,例如以下:

lichao@ubuntu:command$ echo "0123456789" | grep -b -o 4

4:4

10. 当字符串在多个文件里匹配时。-l选项将仅仅打印文件名称

11. -L与-l相对。仅仅打印不匹配的文件名称

lichao@ubuntu:command$ cat test1.txt

linux

is

fun

lichao@ubuntu:command$ cat test2.txt

a

very

popular

os,

linux

lichao@ubuntu:command$ cat test3.txt

what

the

fxxk

lichao@ubuntu:command$ grep -l linux test1.txt test2.txt test3.txt

test1.txt

test2.txt

lichao@ubuntu:command$ grep -L linux test1.txt test2.txt test3.txt

test3.txt

12. 打开递归搜索功能

lichao@ubuntu:command$ grep -n -R linux .

./test2.txt:5:linux

./test1.txt:1:linux

13. 忽略大写和小写:-i

lichao@ubuntu:command$ echo "HELLO WORLD" | grep -i "hello"

HELLO WORLD

14. 匹配多个字符串模式

lichao@ubuntu:command$ echo "This is a line." | grep -e "This" -e "is" -e "line" -o

This

is

line

15. 用单独的文件提供匹配样式,每一个匹配的样式作为一行,例如以下例所看到的:

lichao@ubuntu:command$ cat pattern.txt

1$

2

3

lichao@ubuntu:command$ cat num.txt

1

2

3

4

5

6

7

8

9

10

lichao@ubuntu:command$ grep -f pattern.txt num.txt

1

2

3

16. 打印匹配行上下文信息,使用 -A n打印匹配行及其后n行信息。使用-B n打印匹配行及其前n行信息。使用 -C n。打印匹配行及其前后n行信息。假设有多重匹配,将使用--隔离。

示比例如以下:

lichao@ubuntu:command$ seq 1 10 | grep 5 -A 3

5

6

7

8

lichao@ubuntu:command$ seq 1 10 | grep 5 -B 3

2

3

4

5

lichao@ubuntu:command$ seq 1 10 | grep 5 -C 3

2

3

4

5

6

7

8

lichao@ubuntu:command$ echo -e "a\nb\nc\nd\na\nb\nc\nd\n" | grep a -A 2

a

b

c

--

a

b

c

17. 使用-q进入静默模式,该模式下。grep命令执行目的不过执行一个条件測试。通常在脚本中使用。通过检查其返回值进行下一步操作。示比例如以下:

lichao@ubuntu:command$ cat tmp.txthelloworldlichao@ubuntu:command$ cat tmp.csh#!/bin/bashif [ $# -ne 2 ]; thenecho "Usage: $0 match_pattern file_name"exitfimatch=$1file=$2grep -q $match $fileif [ $?

-ne 0 ]; then

echo "$match not exist in $file"

else

echo "$match exist in $file"

fi

lichao@ubuntu:command$ ./tmp.csh hello tmp.txt

hello exist in tmp.txt

18. -Z选项在输出匹配文件名称时将以/0结尾配合xargs -0能够发挥非常多作用,比如删除匹配某个模式的文件例如以下:

lichao@ubuntu:command$ ls -llrt

total 28

-rw-rw-r-- 1 lichao lichao  13 Nov  1 20:38 test1.txt

-rw-rw-r-- 1 lichao lichao  27 Nov  1 20:39 test2.txt

-rw-rw-r-- 1 lichao lichao  14 Nov  1 20:39 test3.txt

-rw-rw-r-- 1 lichao lichao  21 Nov  1 20:45 num.txt

-rw-rw-r-- 1 lichao lichao  7 Nov  1 20:45 pattern.txt

-rw-rw-r-- 1 lichao lichao  12 Nov  1 21:25 tmp.txt

-rwxr-xr-x 1 lichao lichao 217 Nov  1 21:27 tmp.csh

lichao@ubuntu:command$ cat test1.txt

linux

is

fun

lichao@ubuntu:command$ cat test2.txt

a

very

popular

os,

linux

lichao@ubuntu:command$ grep "linux" * -lZ | xargs -0 rm

lichao@ubuntu:command$ ls

num.txt  pattern.txt  test3.txt  tmp.csh  tmp.txt

以上命令将包括linux字符串的test1.txt和test2.txt删除。

19. 排除/包含文件或者文件夹:1)--include *{.c,.cpp} 仅仅在文件夹中搜索.c和.cpp文件;2)--exclude "README" 排除全部README文件 3) --include-dir 仅在某些文件夹中搜索 4) --exclude-dir 排除某些文件夹 5) --exclude-from FILE 从文件FILE中读取须要排除的文件列表

lichao@ubuntu:test$ ls

dir1  dir2  exclude.config  test1.txt  test2.doc  test3.word

lichao@ubuntu:test$ cat test1.txt

linux

is

fun

lichao@ubuntu:test$ cat test2.doc

wonderful

os,

linux

lichao@ubuntu:test$ cat test3.word

wonderful

os,

linux

lichao@ubuntu:test$ ls dir1/

test1.txt  test2.doc  test3.word

lichao@ubuntu:test$ ls dir2/

test1.txt  test2.doc  test3.word

lichao@ubuntu:test$ cat exclude.config

*.txt

lichao@ubuntu:test$ grep "linux" -R -n .

./test2.doc:3:linux

./test3.word:3:linux

./test1.txt:1:linux

./dir2/test2.doc:3:linux

./dir2/test3.word:3:linux

./dir2/test1.txt:1:linux

./dir1/test2.doc:3:linux

./dir1/test3.word:3:linux

./dir1/test1.txt:1:linux

lichao@ubuntu:test$ grep "linux" -R -n . --include *.txt --include *.doc

./test2.doc:3:linux

./test1.txt:1:linux

./dir2/test2.doc:3:linux

./dir2/test1.txt:1:linux

./dir1/test2.doc:3:linux

./dir1/test1.txt:1:linux

lichao@ubuntu:test$ grep "linux" -R -n . --exclude *.txt --eclude *.doc

grep: unrecognized option '--eclude'

Usage: grep [OPTION]... PATTERN [FILE]...

Try 'grep --help' for more information.

lichao@ubuntu:test$ grep "linux" -R -n . --exclude *.txt --exclude *.doc

./test3.word:3:linux

./dir2/test3.word:3:linux

./dir1/test3.word:3:linux

lichao@ubuntu:test$ grep "linux" -R -n . --exclude-dir dir1

./test2.doc:3:linux

./test3.word:3:linux

./test1.txt:1:linux

./dir2/test2.doc:3:linux

./dir2/test3.word:3:linux

./dir2/test1.txt:1:linux

lichao@ubuntu:test$ grep "linux" -R -n . --exclude-dir dir1 --exclude-dir dir2

./test2.doc:3:linux

./test3.word:3:linux

./test1.txt:1:linux

lichao@ubuntu:test$ grep "linux" -R -n . --exclude-from exclude.config

./test2.doc:3:linux

./test3.word:3:linux

./dir2/test2.doc:3:linux

./dir2/test3.word:3:linux

./dir1/test2.doc:3:linux

./dir1/test3.word:3:linux

已上即为grep经常使用的选项。

注意:转载请注明出处。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,732评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,496评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,264评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,807评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,806评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,675评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,029评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,683评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,704评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,666评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,773评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,413评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,016评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,204评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,083评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,503评论 2 343

推荐阅读更多精彩内容