2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-24 11:27:41 +00:00
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