CLI实用程序帮助文件的最佳实践

我已经完成了一个命令行实用程序,它通过getopt_long解析参数.为了总结,我需要实现-h或–help开关,它将打印出参数列表以及描述和默认值.

是否有我可以使用的GNU框架?如果没有,我意识到有几种方法可以手动完成.通常被认为是最好的方法?

最佳答案 您可以使用

#include <getopt.h>
int getopt_long(int argc, char * const argv[],
           const char *optstring,
           const struct option *longopts, int *longindex);

请参阅man 3 getopt_long了解如何使用它.

关于在–help选项的输出中打印什么,您可以阅读

GNU Coding Standards

4.7.2 ‘–help’

http://www.gnu.org/prep/standards/standards.html#g_t_002d_002dhelp

点赞