fish-shell/share/functions/__fish_sgrep.fish
Fabian Homborg bffeb664cc Add __fish_sgrep
Missed in b85a8bb because of `git commit -a`.

Fixes #2372
2015-09-09 21:52:18 +02:00

5 lines
122 B
Fish

function __fish_sgrep -d "Call grep without honoring GREP_OPTIONS settings"
set -l GREP_OPTIONS
command grep $argv
end