原因是在你的配置文件中(我的是CentOS7, /etc/profile)出现了以下配置导致的:
export GREP_OPTIONS=--color=auto
解决方法也很简单, 首先在/etc/profile
中注释该行
# export GREP_OPTIONS=--color=auto
然后在terminal界面执行unset GREP_OPTIONS
再次执行grep操作, 就不会有恼人的Warning出现啦~
附录: 有可能影响到grep的这一行export配置并不在你的/etc/profile
文件下,你可以尝试去~/.bashrc
~/.bashprofile
~/.zshrc
等文件中查找