configs  grep.fish at [efaabe0fb7]

File config/fish/functions/grep.fish artifact fe54d6ff0d part of check-in efaabe0fb7


function grep
	if which ggrep >/dev/null
		command ggrep --color=auto $argv
	else
		command grep --color=auto $argv
	end
end