Friday, May 25, 2018

How to get rid of `grep: warning: GREP_OPTIONS is deprecated; please use an alias or script`?

Need to have an alias for grep to make the output colored as follows and unset the GREP_OPTIONS.


alias grep="grep --color=auto"
unset GREP_OPTIONS



1 comment: