fkoh111 / dotfiles

Selection of :red_circle: files
0 stars 0 forks source link

task/grep_options_depreacted #37

Closed fkoh111 closed 4 years ago

fkoh111 commented 4 years ago

grep: warning: GREP_OPTIONS is deprecated; please use an alias or script

Apparently should be aliased instead, see: https://github.com/mathiasbynens/dotfiles/issues/467#issuecomment-145312973

# Move export GREP_OPTIONS="--color=auto" (which is deprecated) from .exports to .alias
# Always enable colored `grep` output`
alias grep="grep --color=auto"
alias fgrep="fgrep --color=auto"
alias egrep="egrep --color=auto"