configs  fgrep.fish at [99fc4ada89]

File config/fish/functions/fgrep.fish artifact ffd6c6c5b2 part of check-in 99fc4ada89


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