configs  grep.fish at [09fe98aab3]

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


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