2009-08-28 18:14:17 +00:00
|
|
|
#
|
|
|
|
# Color grep results
|
|
|
|
# Examples: http://rubyurl.com/ZXv
|
|
|
|
#
|
2012-06-14 05:06:36 +00:00
|
|
|
|
|
|
|
# avoid VCS folders
|
|
|
|
GREP_OPTIONS=
|
|
|
|
for PATTERN in .cvs .git .hg .svn; do
|
|
|
|
GREP_OPTIONS+="--exclude-dir=$PATTERN "
|
|
|
|
done
|
|
|
|
export GREP_OPTIONS+='--color=auto '
|
2009-08-28 18:14:17 +00:00
|
|
|
export GREP_COLOR='1;32'
|