configs  fgrep.fish at [1cacfaf154]

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


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