configs  Diff

Differences From Artifact [17bde11169]:

To Artifact [ffd6c6c5b2]:


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

|





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