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