ohmyzsh/lib/grep.zsh
Søren Palmund 1035b9577a Removed invalid option for versions of grep below 2.5.3
Versions of grep below 2.5.3 do not support the --exclude-dir option.
2014-04-03 11:58:53 +02:00

10 lines
185 B
Bash

#
# Color grep results
# Examples: http://rubyurl.com/ZXv
#
# avoid VCS folders
GREP_OPTIONS=
GREP_OPTIONS+="--color=auto"
export GREP_OPTIONS="$GREP_OPTIONS"
export GREP_COLOR='1;32'