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
|
|
|
|
2016-05-12 09:40:24 +02:00
|
|
|
# ignore these folders (if the necessary grep flags are available)
|
|
|
|
EXC_FOLDERS="{.bzr,CVS,.git,.hg,.svn,.idea}"
|
2014-12-13 19:13:27 +01:00
|
|
|
|
2014-03-24 08:17:19 +01:00
|
|
|
if grep-flag-available --exclude-dir=.cvs; then
|
2016-05-12 09:40:24 +02:00
|
|
|
GREP_OPTIONS+=" --exclude-dir=$EXC_FOLDERS"
|
2014-03-24 08:17:19 +01:00
|
|
|
elif grep-flag-available --exclude=.cvs; then
|
2016-05-12 09:40:24 +02:00
|
|
|
GREP_OPTIONS+=" --exclude=$EXC_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
|
2016-05-12 09:40:24 +02:00
|
|
|
unset EXC_FOLDERS
|
2014-12-13 19:36:57 +01:00
|
|
|
unfunction grep-flag-available
|