2014-12-13 19:36:57 +01:00
|
|
|
# is x grep argument available?
|
|
|
|
grep-flag-available() {
|
|
|
|
echo | grep $1 "" >/dev/null 2>&1
|
|
|
|
}
|
2012-06-14 07:06:36 +02:00
|
|
|
|
2015-02-02 20:49:24 +01:00
|
|
|
GREP_OPTIONS=""
|
|
|
|
|
2014-12-13 19:36:57 +01:00
|
|
|
# color grep results
|
2015-02-02 20:49:24 +01:00
|
|
|
if grep-flag-available --color=auto; then
|
|
|
|
GREP_OPTIONS+=" --color=auto"
|
|
|
|
fi
|
2014-03-24 08:17:19 +01:00
|
|
|
|
2014-12-13 19:36:57 +01:00
|
|
|
# ignore VCS folders (if the necessary grep flags are available)
|
2014-12-13 19:14:23 +01:00
|
|
|
VCS_FOLDERS="{.bzr,.cvs,.git,.hg,.svn}"
|
2014-12-13 19:13:27 +01:00
|
|
|
|
2014-03-24 08:17:19 +01:00
|
|
|
if grep-flag-available --exclude-dir=.cvs; then
|
2014-12-13 19:13:27 +01:00
|
|
|
GREP_OPTIONS+=" --exclude-dir=$VCS_FOLDERS"
|
2014-03-24 08:17:19 +01:00
|
|
|
elif grep-flag-available --exclude=.cvs; then
|
2014-12-13 19:13:27 +01:00
|
|
|
GREP_OPTIONS+=" --exclude=$VCS_FOLDERS"
|
2014-03-24 08:17:19 +01:00
|
|
|
fi
|
|
|
|
|
2014-12-13 19:36:57 +01:00
|
|
|
# export grep settings
|
2014-11-24 13:08:39 +01:00
|
|
|
alias grep="grep $GREP_OPTIONS"
|
2014-12-13 19:36:57 +01:00
|
|
|
|
|
|
|
# clean up
|
2014-11-24 13:08:39 +01:00
|
|
|
unset GREP_OPTIONS
|
2014-12-13 19:36:57 +01:00
|
|
|
unset VCS_FOLDERS
|
|
|
|
unfunction grep-flag-available
|