2010-06-11 09:34:46 +00:00
|
|
|
|
|
|
|
# color-grep initialization
|
|
|
|
|
2011-04-04 08:32:39 +00:00
|
|
|
if ( -r /etc/GREP_COLORS ) then
|
|
|
|
set color_none=`sed -n '/^COLOR.*none/Ip' < /etc/GREP_COLORS`
|
2010-06-11 09:34:46 +00:00
|
|
|
if ( "$color_none" != '' ) then
|
|
|
|
unset color_none
|
|
|
|
exit
|
|
|
|
endif
|
|
|
|
unset color_none
|
|
|
|
endif
|
|
|
|
|
2010-06-07 15:25:12 +00:00
|
|
|
alias grep 'grep --color=auto'
|