configs  grep.fish at [dc711ef8ab]

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


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