configs  fgrep.fish at [1c4afa3fc9]

File config/fish/functions/fgrep.fish artifact ffd6c6c5b2 part of check-in 1c4afa3fc9


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