aboutsummaryrefslogtreecommitdiff
path: root/sh/profile.d/grep.sh
blob: e83d626855fc1f3cf089d8da033e81d0596f5ed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Store grep(1)'s --help output in a variable
grep_help=$(grep --help 2>/dev/null)

# Define and store appropriate colors for grep(1) if applicable
case $grep_help in
    *--color*)
        GREP_COLORS='ms=01;31:mc=01;31:sl=:cx=:fn=35:ln=32:bn=32:se=36'
        export GREP_COLORS
        ;;
esac

# Use GREP_OPTIONS to add some useful --exclude and --exclude-dir options to
# grep(1) calls if applicable
case $grep_help in
    *--exclude*)
        for exclude in .gitignore .gitmodules ; do
            GREP_OPTIONS=${GREP_OPTIONS:+$GREP_OPTIONS }'--exclude='$exclude
        done
        unset -v exclude
        ;;
esac
case $grep_help in
    *--exclude-dir*)
        for exclude_dir in .cvs .git .hg .svn ; do
            GREP_OPTIONS=${GREP_OPTIONS:+$GREP_OPTIONS }'--exclude-dir='$exclude_dir
        done
        unset -v exclude_dir
        ;;
esac

# We're done parsing grep(1)'s --help output now
unset -v grep_help

# Export the grep(1) options if we decided on any
if [ -n "$GREP_OPTIONS" ] ; then
    export GREP_OPTIONS
fi