configs  grep.fish at [c4bb3283fb]

File config/fish/functions/grep.fish artifact 2009a4dbf8 part of check-in c4bb3283fb


function grep
	if type -q ggrep
		command ggrep --color=auto $argv
	else
		command grep --color=auto $argv
	end
end