mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
9 lines
233 B
Fish
9 lines
233 B
Fish
# returns 0 only if any argument is on of the supplied arguments
|
|
function __fish_any_arg_in
|
|
set -l haystack $argv
|
|
for arg in (commandline -opc)
|
|
contains -- $arg $haystack
|
|
and return 0
|
|
end
|
|
return 1
|
|
end
|