configs  grep.fish at [1cacfaf154]

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


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