似乎有一些工作正在进行中,以便在将来增加对此的支持:
https://github.com/fish-shell/fish-shell/issues/478
https://github.com/xiaq/fish-shell/tree/opt-parse
但与此同时,推荐的解决方法是什么?我应该解析$ argv吗?如果是这样,你有一些提示/最佳实践吗?
答案 0 :(得分:5)
我不确定这是不是最佳做法,但与此同时你可以这样做:
function options
echo $argv | sed 's|--*|\\'\n'|g' | grep -v '^$'
end
function function_with_options
for i in (options $argv)
echo $i | read -l option value
switch $option
case a all
echo all the things
case f force
echo force it
case i ignore
echo ignore the $value
end
end
end
输出:
➤ function_with_options -i thing -a --force
ignore the thing
all the things
force it
答案 1 :(得分:3)
你可以这样做:
for item in $argv
switch "$item"
case -f --foo
case -b --bar
end
end
以上不支持在单个参数-fbz
,选项值--foo=baz
,--foo baz
或f baz
,否定赋值--name!=value
中编写短选项,结束选项--
和破折号-
和--
始终是参数的一部分。
为了解决这些问题,我写了一个getopts函数。
getopts -ab1 --foo=bar baz
现在看一下输出。
a
b 1
foo bar
_ baz
左侧上的项目表示与CLI关联的选项标志或键。 右侧上的项目是值选项。对于没有键的参数,下划线_
字符是默认的键。
使用read(1)
处理生成的流,switch(1)
匹配模式:
getopts -ab1 --foo=bar baz | while read -l key option
switch $key
case _
case a
case b
case foo
end
end
请参阅documentation。
答案 2 :(得分:3)
解析$argv
在基本情况下很好,但否则可能变得乏味且容易出错。
在fish有自己的参数解析解决方案之前,社区创建了这些插件
从fish 2.7.0开始,您可以使用fish的内置选项解析器:argparse
function foo --description "Example argparse usage"
set --local options 'h/help' 'n/count=!_validate_int --min 1'
argparse $options -- $argv
if set --query _flag_help
printf "Usage: foo [OPTIONS]\n\n"
printf "Options:\n"
printf " -h/--help Prints help and exits\n"
printf " -n/--count=NUM Count (minimum 1, default 10)"
return 0
end
set --query _flag_count; or set --local _flag_count 10
for i in (seq $_flag_count); echo foo; end
end
要查看所有可能的结果,请运行argparse -h
或argparse --help
。