Linux的c编程getopt(分析命令行参数)

函数使用说明:
头文件 #include
定义函数 int getopt(int argc,char * const argv[ ],const char * optstring);

optstring中的指定的内容的意义(例如getopt(argc, argv, “ab:c:”);)
1.单个字符,表示选项(如下例中的abcde各为一个选项)。
2.单个字符后接一个冒号:表示该选项后必须跟一个参数。参数紧跟在选项后或者以空格隔开。该参数的指针赋给optarg(如下例中的b:c:)。
3 单个字符后跟两个冒号,表示该选项后可以跟一个参数,也可以不跟。如果跟一个参数,参数必须紧跟在选项后不能以空格隔开。该参数的指针赋给optarg。(如上例中的e::,如果没有跟参数,则optarg = NULL)

比如下面是个c服务程序的代码:(test.c)
#include
  #include
  int main(int argc, char *argv[])
  {
  int ch;

while((ch = getopt(argc,argv,“a:bcde”))!= -1)
  {
  switch(ch)
  {
   case ‘a’:
printf(“getopt a:’%s’\n”,optarg);
break;
  case ‘b’:
printf(“getopt b :b\n”);
break;
   default:
printf(“other getopt :%c\n”,ch);
  }
  }
   return 0;
  }

执行 $./test –b
getopt b:b

执行 $./test –c
other getopt:c

执行 $./test –a
other getopt :?

执行 $./test –a123
getopt a:’123’

你可能感兴趣的:(Linux开发)