grep.zsh 243 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
11

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