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