fish-shell/share/functions/__fish_sgrep.fish
2017-04-15 21:51:33 -07:00

5 lines
219 B
Fish

# This function is deprecated. Do not introduce new uses. Use the `string` command instead.
function __fish_sgrep -d "Call grep without honoring GREP_OPTIONS settings"
set -l GREP_OPTIONS
command grep $argv
end