mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
dcc081a594
Fixes #2450
5 lines
219 B
Fish
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
|