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