mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 04:22:55 +08:00
dcc081a594
Fixes #2450
6 lines
219 B
Fish
6 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
|