configs  grep.fish at [01a7f7a67b]

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


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