- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 getopt 来解析选项。我解析的选项之一 (-a
) 有一个强制参数。
我的 getopt 调用如下所示:
while((c = getopt(argc, argv, "a:b")) != -1) {
switch(c) {
case 'a':
foo = atoi(optarg);
break;
...
}
}
这是我的问题:
假设有人运行./my-command -a100b
。我希望我的程序告诉您有一个带有参数 100 的 -a
选项和一个 -b
选项。但是,getopt 将其解析为带有参数 100b
的 -a
选项。
我如何告诉 getopt 它尚未完成解析 -a100b
?我想告诉 getopt 从字符 b
开始解析,以便它识别出有一个 -b
选项。
最佳答案
Suppose someone runs
./my-command -a100b
. I want my program to tell that there is a-a
option with an argument 100 and a-b
option. However, getopt parses this as a-a
option with an argument100b
.
是的,确实如此。这就是 getopt()
解析选项语言的工作原理。
How can I tell getopt that it's not done parsing
-a100b
? I want to tell getopt to start parsing at the characterb
, so that it recognizes that there is a-b
option.
你不能。 POSIX 标准 getopt()
和我所知道的任何扩展版本(例如 GNU 的)都不支持这样的事情。特别是POSIX specficiation for getopt
部分说,
The
getopt()
function is a command-line parser that shall follow Utility Syntax Guidelines 3, 4, 5, 6, 7, 9, and 10 in XBD Utility Syntax Guidelines.
Those guidelines是关于命令行选项及其格式的。与您的问题最相关的是:
Guideline 3: Each option name should be a single alphanumeric character (the alnum character classification) from the portable character set. [...]
Guideline 4: All options should be preceded by the '-' delimiter character.
Guideline 5: One or more options without option-arguments, followed by at most one option that takes an option-argument, should be accepted when grouped behind one '-' delimiter.
Guideline 6: Each option and option-argument should be a separate argument, except as noted in Utility Argument Syntax, item (2).
特别注意准则 5:当您将选项组合在一起时,只有最后一个可能是带有参数的选项。这允许该组的尾部或下一个完整参数被解释为参数,这就是您所看到的 getopt
所做的。
当然,如果您希望您的程序接受不符合 POSIX 准则的选项,那么您可以自由地使其这样做,但您可能需要执行自己的选项解析。也许您可以获得 getopt 的帮助,但您需要在顶部添加一个重要的自定义解析层。从头开始自己开发可能会更容易。
关于c - 告诉 getopt 它没有完成解析选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52572585/
是否可以将参数传递给通过 getopt::long 调用的子例程?例如,当用户在命令行上指定 script.pl -pandora argument 时,我有此代码调用 &Salt GetOption
我正在尝试将 getopts 用于 bash 脚本。这个脚本可以有标志,所有这些标志都是强制性的,需要包含一个值。当本应包含值的强制标志之一为空时,getopts 使用下一行标志作为其内容。我该如何防
我公司使用 Getopt::Declare 作为其命令行选项解析器。我们的期权处理 block 的结构通常如下所示: Readonly my $ARGS => Getopt::Declare->new
我有一个带有可能的命令行参数的字符串(使用 Read-Eval-Print-Loop 程序),我希望它在传递给 Getopt::Long 时被解析为类似于命令行参数。 详细说明: 我有一个字符串 $s
我刚刚在代码审查中第一次被要求检查对 GetOptions() 的调用的返回码。 Getopt::Long 的功能Perl 模块。 我不记得曾经看到过这样的 GetOptions() 测试。功能。 那
我有这个 getopt: GetOptions( GetOptions ("library=s" => \@libfiles); @libfiles = split(/,/,join(','
我想使用 Getopt::Long::GetOptions 获取脚本的命令行选项。 我有这样的需求: perl script.pl -c -c -m argument 这里我们有选项标志 -c
我正在尝试使用 getopt() 解析命令行参数。下面是我的代码。无论我在运行程序时传递什么参数,getopt() 总是返回 -1。 例如: $ gcc -o test test.c $ ./test
在我的 python 脚本中使用 getopt.getopt() 函数时,临时返回值保持为空。我缺少什么。 def ParseOpts(cmdName): shortForm = 'c:n:'
我想使用 getopt,但它行不通。 它给了我 gcc -g -Wall -std=c99 -ftrapv -O2 -Werror -Wshadow -Wundef -save-temps -Werr
有人可以帮助我使用 getopt 函数吗? 当我在 main 中执行以下操作时: char *argv1[] = {"testexec","-?"}; char *argv2[] = {"testex
我有一个脚本,它从 CLI 获取 3 个输入变量并将其分别插入到 3 个变量: GetOptions("old_path=s" => \$old_path, "var=s" =
如何以这种方式接受命令行参数: ./a.out --printall 所以在我的程序中,我有类似的东西 if (printall) { // do something } 我不想这样做: if (
在 Perl getopts 中,是否可以多次使用相同的选项但具有不同的值?我想为用户提供输入不同网格坐标的选项,但使用相同的选项名称以尽量减少混淆。 例如: my_grid.pl --coords=
是否有用于Groovy的标准或推荐的getopts库,该库可以让我快速处理Groovy中的长期和短期命令行争论? groovy foo.groovy --fname = foo.txt --outpu
use Getopt::Long::Configure(pass_through); # .... GetOptions( "display=s" => \$display,
我正在运行 bash 4.2 版,我正在尝试使用内置命令 getopts 解析命令行参数, 但是getopts好像没有正确解析,如果-s不是第一个参数,就不会被解析 -s 未解析: %> ./geto
GetOptions( "r|repo=s" => \$repo, "R|list-repos" => \$list, ); 当我用 -r qwe 调用这个脚本
我正在尝试使用 getopt() 从 PHP7 cli 获取选项,但是在调用 php myprocess.php task -d -o 时我得到一个空数组。不知道我错过了什么,希望你能帮助我。 这就是
我正在寻找一种方法来处理包含必须解析的空格的参数 通过 shell getopts 命令。 while getopts ":a:i:o:e:v:u:" arg do echo "ARG is:
我是一名优秀的程序员,十分优秀!