configs  fgrep.fish at [c22a3e608c]

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


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