configs  fgrep.fish at [c4bb3283fb]

File config/fish/functions/fgrep.fish artifact f114a20ecb part of check-in c4bb3283fb


function fgrep
	if type -q ggrep
		command ggrep -F --color=auto $argv
	else
		command fgrep --color=auto $argv
	end
end