繁体   English   中英

为什么我的程序 output 使用两次参数([-d?] 和 [-d|--data])? (我正在使用 popt 库进行选项解析)

[英]Why does my program output an argument twice in usage ([-d?] and [-d|--data])? (i'm using popt library for options parsing)

程序使用两次输出-d选项,尽管我在struct poptOption中只提供了一次。 这是output的用法:

Usage: generate-test [-d?] [-d|--data] [-n|--test-name=STRING] [-?|--help]
        [--usage]

--help output 是正确的:

Usage: generate-test [OPTION...]
  -d, --data                 Provide this option if the test needs external data from file(s)
  -n, --test-name=STRING     Provide a test name, this option is mandatory

Help options:
  -?, --help                 Show this help message
      --usage                Display brief usage message

这是我的代码:

char *test_name = NULL;
int use_external_data = 0;

struct poptOption popt_options[] = {
    {"data", 'd', POPT_ARG_NONE, NULL, 2, "Provide this option if the test needs an external data from file(s)", NULL },
    {"test-name", 'n', POPT_ARG_STRING, &test_name, 1, "Provide a test name, this option is mandatory", NULL },

    POPT_AUTOHELP { NULL, '\0', 0, NULL, 0, NULL, NULL }
};

poptContext popt_context;
popt_context = poptGetContext("Test generator", argc, argv, popt_options, 0);

int opt_ret = 0;
while ((opt_ret = poptGetNextOpt(popt_context)) > 0)
    switch (opt_ret)
    {
        case 2:
            use_external_data = 1;
            break;
    }

我对 POpt 库有什么不明白的地方? 谢谢!

我同意这可能看起来令人困惑。 [-d?] [-d|--data]显示的popt-d短选项可以是独立选项,也可以聚合到其他短选项,例如-? (与-n相反)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM