2006-02-20 13:02:03 +00:00
|
|
|
#
|
|
|
|
# Match colors for grep, if supported
|
|
|
|
#
|
|
|
|
|
2006-07-12 14:22:42 +00:00
|
|
|
if command grep --color=auto --help 1>/dev/null 2>/dev/null
|
2014-11-25 00:47:30 +00:00
|
|
|
function grep
|
|
|
|
command grep --color=auto $argv
|
2006-02-20 13:02:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|