configs  Artifact [fe54d6ff0d]

Artifact fe54d6ff0d32e362386a1d11dc48ac03b82051f0a730ce576da14df9189fc7e9:

  • File config/fish/functions/grep.fish — part of check-in [09fe98aab3] at 2020-01-21 00:11:28 on branch trunk — Add fish config (user: js size: 125)

function grep
	if which ggrep >/dev/null
		command ggrep --color=auto $argv
	else
		command grep --color=auto $argv
	end
end