grep的简单的用法

演示文件:

[root@cyf opt]# cat  123.txt 
qqqqqqqqqq
wwwwwwwww
eeeeeeeeeaa
rrrrrr
aaaaa
111
222
333
4
5
a

1
-A表示匹配本行和之后的行

[root@cyf opt]# grep  -A 1 111 123.txt 
111
222

2
-B表示匹配本行和之前的行

[root@cyf opt]# grep -B 1 111  123.txt 
aaaaa
111

3
-C表示 匹配本行与上下行

[root@cyf opt]# grep  -C 1 222 123.txt 
111
222
333

4
-c表示grep的参数有多少个

[root@cyf opt]# grep  -c a  123.txt 
3

5
–color表示颜色显示

[root@cyf opt]# grep  --color  11 123.txt 
111

6
-e后面跟正则表达式,可以跟多个正则

[root@cyf opt]# grep  -e  ^e  -e 2$  123.txt 
eeeeeeeeeaa
222

7
-f指定文件内容作为查询条件

[root@cyf opt]# cat we 
11
[root@cyf opt]# ls
123.txt  we
[root@cyf opt]# grep -f we 123.txt 
111

8
-m 最多匹配多少个个数作为条件

[root@cyf opt]# cat  123.txt 
qqqqqqqqqq
wwwwwwwww
eeeeeeeeeaa
rrrrrr
aaaaa
111
222
333
4
5
a
[root@cyf opt]# grep -m 2 a 123.txt 
eeeeeeeeeaa
aaaaa

9
-n表示行数计数

[root@cyf opt]# grep -n a 123.txt 
3:eeeeeeeeeaa
5:aaaaa
11:a

10
-o 只打印匹配的内容

[root@cyf opt]# grep -o  11 123.txt 
11
[root@cyf opt]# grep -o  1 123.txt 
1
1
1

11
-R搜素子目录内容

[root@cyf opt]# grep  -R a *
1/2/3/spur:aaaaa
123.txt:eeeeeeeeeaa
123.txt:aaaaa
123.txt:a
we:a

12
-v表示查找不含参数的行


[root@cyf opt]# grep  -v a 123.txt 
qqqqqqqqqq
wwwwwwwww
rrrrrr
111
222
333
4
5

13
w查找一个词

[root@cyf opt]# cat  we
a
12 33 44
55 66 77
a s d f
[root@cyf opt]# grep  -w 12 we
12 33 44
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值