linux解析命令行选项getopt_long用法
在程序中难免需要使用命令行选项,可以选择自己解析命令行选项,但是有现成的,何必再造轮子。
下面介绍使用getopt_long解析命令行选项。
程序中主要使用:
短选项 长选项 是否需要参数 备注
-v --version 否 查询版本号
-n --name 是(用户名) 指定使用者
-d --debug 否 是否已测试
1、函数出处
复制代码
代码如下:
[cpp]
#include
int getopt_long (int ___argc, char *const *___argv,
const char *__shortopts,
const struct option *__longopts, int *__longind);...[ 查看全文 ]