1
1
Fork 0
configs/config/fish/functions/fgrep.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