7 lines
125 B
Fish
7 lines
125 B
Fish
function grep
|
|
if which ggrep >/dev/null
|
|
command ggrep --color=auto $argv
|
|
else
|
|
command grep --color=auto $argv
|
|
end
|
|
end
|