命令行参数解析(getopt函数使用)
Posted luo-ruida
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了命令行参数解析(getopt函数使用)相关的知识,希望对你有一定的参考价值。
部分转自 http://blog.csdn.net/huangxiaohu_coder/article/details/7475156 感谢原作者。
1. getopt函数声明
1 #include <unistd.h> 2 3 int getopt(int argc, char * const argv[], const char *optstring); 4 5 extern char *optarg; 6 extern int optind, opterr, optopt;
该函数的argc和argv参数通常直接从main()的参数直接传递而来。optstring是选项字母组成的字串。如果该字串里的任一字符后面有冒号,那么这个选项就要求有选项参数。
当给定getopt()命令参数的数量 (argc
)、指向这些参数的数组 (argv
) 和选项字串 (optstring
) 后,getopt()
将返回第一个选项,并设置一些全局变量。使用相同的参数再次调用该函数时,它将返回下一个选项,并设置相应的全局变量。如果不再有可识别的选项,将返回 -1
,此任务就完成了。
getopt()
所设置的全局变量包括:
char *optarg
——当前选项参数字串(如果有)。int optind
——argv的当前索引值。当getopt()在while循环中使用时,循环结束后,剩下的字串视为操作数,在argv[optind]至argv[argc-1]中可以找到。- int opterr——这个变量非零时,getopt()函数为“无效选项”和“缺少参数选项,并输出其错误信息。
int optopt
——当发现无效选项字符之时,getopt()函数或返回‘?‘字符,或返回‘:‘字符,并且optopt包含了所发现的无效选项字符。
2. 示例代码
1 #include <unistd.h> 2 #include <stdio.h> 3 4 int main(int argc, char *argv[]) 5 { 6 int res; 7 char *optstr = "mnc:"; 8 while ((res = getopt(argc, argv, optstr)) != -1) 9 { 10 switch (res) 11 { 12 case ‘m‘: 13 printf("opt is %c\n", (char)res); 14 break; 15 case ‘n‘: 16 printf("opt is %c\n", (char)res); 17 break; 18 case ‘c‘: 19 printf("opt is %s\n", optarg); 20 break; 21 default: 22 printf("unknown option\n"); 23 } 24 } 25 exit(0); 26 27 }
输出:
[email protected]:~/codetest# ./a.out -mnc third_opt opt is m opt is n opt is third_opt [email protected]:~/codetest#
以上是关于命令行参数解析(getopt函数使用)的主要内容,如果未能解决你的问题,请参考以下文章