grep命令最常用的功能总结

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

2. 可以从多个文件中匹配:grep word filename1 filenam2 filename3

3. 可以使用正则表达式匹配:grep -E pattern f1 f2 f3...

4. 可以使用-o只打印匹配的字符,如下所示:

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

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

[email protected]:command$ echo -e "1\n2\n3\n4" | grep -v -E "[1-2]"
3
4

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

[email protected]:command$ echo -e "1111\n2222" | grep -E "[1-2]" -c
2

7. 如果我们统计字符串模式匹配的次数,可以结合-o和-c,如下:

[email protected]:command$ echo -e "1111\n2222" | grep -o -E "[1-2]"  | wc -l
8

8. 如果需要显示行号,可以打开-n,如下:

[email protected]:command$ echo -e "1111\n2222\n33333\n44444" | grep -n -E "3"
3:33333

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

[email protected]:command$ echo "0123456789" | grep -b -o 4
4:4

10. 当字符串在多个文件中匹配时,-l选项将只打印文件名

11. -L与-l相对,只打印不匹配的文件名

[email protected]:command$ cat test1.txt
linux
is
fun
[email protected]:command$ cat test2.txt
a
very
popular
os,
linux
[email protected]:command$ cat test3.txt
what
the
fxxk
[email protected]:command$ grep -l linux test1.txt test2.txt test3.txt
test1.txt
test2.txt
[email protected]:command$ grep -L linux test1.txt test2.txt test3.txt
test3.txt

12. 打开递归搜索功能

[email protected]:command$ grep -n -R linux .
./test2.txt:5:linux
./test1.txt:1:linux

13. 忽略大小写:-i

[email protected]:command$ echo "HELLO WORLD" | grep -i "hello"
HELLO WORLD

14. 匹配多个字符串模式

[email protected]:command$ echo "This is a line." | grep -e "This" -e "is" -e "line" -o
This
is
line

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

[email protected]:command$ cat pattern.txt
1$
2
3
[email protected]:command$ cat num.txt
1
2
3
4
5
6
7
8
9
10
[email protected]:command$ grep -f pattern.txt num.txt
1
2
3

16. 打印匹配行上下文信息,使用 -A n打印匹配行及其后n行信息;使用-B n打印匹配行及其前n行信息;使用 -C n,打印匹配行及其前后n行信息;如果有多重匹配,将使用--隔离。示例如下:

[email protected]:command$ seq 1 10 | grep 5 -A 3
5
6
7
8
[email protected]:command$ seq 1 10 | grep 5 -B 3
2
3
4
5
[email protected]:command$ seq 1 10 | grep 5 -C 3
2
3
4
5
6
7
8
[email protected]: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命令运行目的仅仅是执行一个条件测试,通常在脚本中使用。通过检查其返回值进行下一步操作。示例如下:

[email protected]:command$ cat tmp.txt
hello
world
[email protected]:command$ cat tmp.csh
#!/bin/bash
if [ $# -ne 2 ]; then
	echo "Usage: $0 match_pattern file_name"
	exit
fi
match=$1
file=$2
grep -q $match $file
if [ $? -ne 0 ]; then
	echo "$match not exist in $file"
else
	echo "$match exist in $file"
fi
[email protected]:command$ ./tmp.csh hello tmp.txt
hello exist in tmp.txt

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

[email protected]: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
[email protected]:command$ cat test1.txt
linux
is
fun
[email protected]:command$ cat test2.txt
a
very
popular
os,
linux
[email protected]:command$ grep "linux" * -lZ | xargs -0 rm
[email protected]: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中读取需要排除的文件列表

[email protected]:test$ ls
dir1  dir2  exclude.config  test1.txt  test2.doc  test3.word
[email protected]:test$ cat test1.txt
linux
is
fun
[email protected]:test$ cat test2.doc
wonderful
os,
linux
[email protected]:test$ cat test3.word
wonderful
os,
linux
[email protected]:test$ ls dir1/
test1.txt  test2.doc  test3.word
[email protected]:test$ ls dir2/
test1.txt  test2.doc  test3.word
[email protected]:test$ cat exclude.config
*.txt
[email protected]: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
[email protected]: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
[email protected]:test$ grep "linux" -R -n . --exclude *.txt --eclude *.doc
grep: unrecognized option '--eclude'
Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.
[email protected]:test$ grep "linux" -R -n . --exclude *.txt --exclude *.doc
./test3.word:3:linux
./dir2/test3.word:3:linux
./dir1/test3.word:3:linux
[email protected]: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
[email protected]:test$ grep "linux" -R -n . --exclude-dir dir1 --exclude-dir dir2
./test2.doc:3:linux
./test3.word:3:linux
./test1.txt:1:linux
[email protected]: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常用的选项。

注意:转载请注明出处。

时间: 2024-10-12 03:36:18

grep命令最常用的功能总结的相关文章

grep命令的常用选项

Linux的grep命令是使用正则表达式进行文本搜索的,一些对程序员很有用的选项如下: -i   忽略大小写 -w  进行普通文件匹配,而不是正则表达式匹配 -c  只统计每个文件中匹配行数(默认是输出匹配行) -n  输出匹配行的时候,文件名后面带上行号 -I  不要搜索二进制文件 -l  只打印匹配的文件名 -L  只打印不匹配的文件名 -v  输出不匹配的行

shell --- grep 命令详解

一.grep  ---- "行过滤工具" grep ( global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来 )是一种强大的文本搜索工具,它能使用正则表达式搜索文本,查找包含某些字符串的行或符合某个模式(Pattern)的一类字符串的行,并把匹配的行打印出来.   grep可用于shell脚本,因为grep通过返回一个状态值来说明搜索的状态,如果模板搜索成功,则返回0,如果搜索不成功,则

Linux中find、grep命令详细用法

在linux下面工作,有些命令能够大大提高效率.本文就向大家介绍find.grep命令,他哥俩可以算是必会的linux命令,我几乎每天都要用到他们.本文结构如下: find命令 find命令的一般形式 find命令的常用选项及实例 find与xargs grep命令 grep命令的一般形式 grep正则表达式元字符集(基本集) grep命令的常用选项及实例 1.find命令 find命令是一个无处不在命令,是linux中最有用的命令之一.find命令用于:在一个目录(及子目录)中搜索文件,你可以

Linux下grep命令

2.grep命令 grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来. 2.1.grep命令的一般选项及实例 grep [OPTIONS] PATTERN [FILE...] grep [OPTIONS] [-e PATTERN | -f FILE] [FILE...] grep命令用于搜索由Pattern参

find和grep命令

find命令 find命令的一般形式 find命令的常用选项及实例 find与xargs grep命令 grep命令的一般形式 grep正则表达式元字符集(基本集) grep命令的常用选项及实例 1.find命令 find命令是一个无处不在命令,是linux中最有用的命令之一.find命令用于:在一个目录(及子目录)中搜索文件,你可以指定一些匹配条件,如按文件名.文件类型.用户甚至是时间戳查找文件.下面就通过实例来体验下find命令的强大. 1.1.find命令的一般形式 man文档中给出的fi

Linux find、grep命令详细用法

在linux下面工作,有些命令能够大大提高效率.本文就向大家介绍find.grep命令,他哥俩可以算是必会的linux命令,我几乎每天都要用到他们.本文结构如下:find命令 find命令的一般形式 find命令的常用选项及实例 find与xargs grep命令 grep命令的一般形式 grep正则表达式元字符集(基本集) grep命令的常用选项及实例 1.find命令find命令是一个无处不在命令,是linux中最有用的命令之一.find命令用于:在一个目录(及子目录)中搜索文件,你可以指定

linux下find和grep命令详解

在linux下面工作,有些命令能够大大提高效率.本文就向大家介绍find.grep命令,他哥俩可以算是必会的linux命令,我几乎每天都要用到他们.本文结构如下: find命令 find命令的一般形式 find命令的常用选项及实例 find与xargs grep命令 grep命令的一般形式 grep正则表达式元字符集(基本集) grep命令的常用选项及实例 1.find命令 find命令是一个无处不在命令,是linux中最有用的命令之一.find命令用于:在一个目录(及子目录)中搜索文件,你可以

Linux三剑客之grep命令详解

先来小菜一碟: cat /etc/passwd | grep -c "/bin/bash$" 以上,用来统计/etc/passwd 文件中以/bin/bash结尾的用户个数. grep用来基于正则去实现行过滤的工具:它有很多衍生命令: egrep 扩展的grep,即默认使用扩展正则表达式的grep,更高级. fgrep 专用于文件行过滤的工具. grep命令格式:grep [option] pattern file        option表示选项,pattern 表示要匹配的模式,

linux中grep命令的用法(转)

作为linux中最为常用的三大文本(awk,sed,grep)处理工具之一,掌握好其用法是很有必要的. 首先谈一下grep命令的常用格式为:grep  [选项]  ”模式“  [文件] grep家族总共有三个:grep,egrep,fgrep. 常用选项: -E :开启扩展(Extend)的正则表达式. -i :忽略大小写(ignore case). -v :反过来(invert),只打印没有匹配的,而匹配的反而不打印. -n :显示行号 -w :被匹配的文本只能是单词,而不能是单词中的某一部分