Linux三剑客之grep

grep是一个可以利用正则表达式进行全局搜索的工具。

区分大小写

-n 打印行号

-i 不区分大小写

--color 高亮显示

-c 符合条件的总行数

-o 只显示匹配到的关键字,不打印整行


[root@tz shell]# grep -i --color test testgrep
zsy test
TEST 123

Centos6中没有设置高亮别名,Centos7中默认设置了

手动设置高亮别名

[root@tz shell]# alias "grep=grep --color"


[root@tz shell]# grep -i test -c testgrep
2

Linux三剑客之grep

上一篇:干货 | C#开发的电影售票系统


下一篇:Linux vi使用技巧