2009-08-29 02:14:17 +08:00
|
|
|
#
|
|
|
|
# Color grep results
|
|
|
|
# Examples: http://rubyurl.com/ZXv
|
|
|
|
#
|
2012-06-14 13:06:36 +08:00
|
|
|
|
2014-03-24 15:17:19 +08:00
|
|
|
GREP_OPTIONS="--color=auto"
|
|
|
|
|
|
|
|
# avoid VCS folders (if the necessary grep flags are available)
|
2014-12-14 02:14:23 +08:00
|
|
|
VCS_FOLDERS="{.bzr,.cvs,.git,.hg,.svn}"
|
2014-12-14 02:13:27 +08:00
|
|
|
|
2014-03-24 15:17:19 +08:00
|
|
|
grep-flag-available() {
|
2014-12-14 02:18:11 +08:00
|
|
|
echo | command grep $1 "" >/dev/null 2>&1
|
2014-03-24 15:17:19 +08:00
|
|
|
}
|
|
|
|
if grep-flag-available --exclude-dir=.cvs; then
|
2014-12-14 02:13:27 +08:00
|
|
|
GREP_OPTIONS+=" --exclude-dir=$VCS_FOLDERS"
|
2014-03-24 15:17:19 +08:00
|
|
|
elif grep-flag-available --exclude=.cvs; then
|
2014-12-14 02:13:27 +08:00
|
|
|
GREP_OPTIONS+=" --exclude=$VCS_FOLDERS"
|
2014-03-24 15:17:19 +08:00
|
|
|
fi
|
2014-12-14 02:13:27 +08:00
|
|
|
unset VCS_FOLDERS
|
2014-03-24 15:17:19 +08:00
|
|
|
unfunction grep-flag-available
|
|
|
|
|
2014-03-23 09:03:12 +08:00
|
|
|
export GREP_OPTIONS="$GREP_OPTIONS"
|
|
|
|
export GREP_COLOR='1;32'
|