configs  grep.fish at [c22a3e608c]

File config/fish/functions/grep.fish artifact 8d66115170 part of check-in c22a3e608c


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