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