grep.zsh 272 Bytes
Newer Older
1
2
3
4
#
# Color grep results
# Examples: http://rubyurl.com/ZXv
#
nXqd's avatar
nXqd committed
5
6
7
8
9
10

# avoid VCS folders
GREP_OPTIONS=
for PATTERN in .cvs .git .hg .svn; do
    GREP_OPTIONS+="--exclude-dir=$PATTERN "
done
11
12
13
GREP_OPTIONS+="--color=auto"
export GREP_OPTIONS="$GREP_OPTIONS"
export GREP_COLOR='1;32'