7 lines
142 B
Fish
7 lines
142 B
Fish
function fgrep
|
|
if type -q ggrep
|
|
command ggrep -F --color=auto $argv
|
|
else
|
|
command fgrep --color=auto $argv
|
|
end
|
|
end
|