configs  grep.fish at [e92f4ffcc5]

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


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