使用grep(egrep)查找出来的信息默认是没有颜色的,这样不易于定位。
1、 使用grep(egrep)默认检索和高亮检索对比
grep(egrep)默认检索字符串
grep(egrep)高亮检索字符串
2、 设置grep(egrep)高亮,编辑/etc/profile文件,在末行添加以下
alias egrep='egrep --color=auto'
alias grep='grep --color=auto'
重启系统或者是执行source /etc/profile即可。