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