configs  Diff

Differences From Artifact [ffd6c6c5b2]:

To Artifact [f114a20ecb]:


1
2
3
4
5
6
7
function fgrep
	if which ggrep >/dev/null ^&1
		command ggrep -F --color=auto $argv
	else
		command fgrep --color=auto $argv
	end
end

|





1
2
3
4
5
6
7
function fgrep
	if type -q ggrep
		command ggrep -F --color=auto $argv
	else
		command fgrep --color=auto $argv
	end
end