configs  grep.fish at 24d2eb82f0b4e25d7bd29f47b75470c518528c55c4483325ec2dd97f4236b50c

File fish/functions/grep.fish artifact 6aa6b9caa3 part of check-in 24d2eb82f0b4e25d7bd29f47b75470c518528c55c4483325ec2dd97f4236b50c


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