configs  fgrep.fish at [01a7f7a67b]

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


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