linux下getopt被用来解析命令行选项参数。
函数原型:
int getopt(int argc, char * const argv[], const char *optstring);
extern char *optarg; //选项的参数指针。
extern int optind, // optind变量,每次getopt后,这个索引指向argv里当前分析的字符串的下一个索引,因此argv[optind]就能得到下个字符串,通过判断是否以 '-'开头就可。
extern int opterr, //当opterr=0时,getopt不向stderr输出错误信息。
extern int optopt; //当命令行选项字符不包括在optstring中或者选项缺少必要的参数时,getopt返回'?’
调用一次,返回一个选项。 直到命令行选项参数再也检查不到optstring中包含的选项时,返回-1,同时optind储存第一个不包含选项的命令行参数。
首先说一下什么是选项,什么是参数。
字符串optstring可以下列元素,
1.单个字符,表示选项,
2.单个字符后接一个冒号:表示该选项后必须跟一个参数。参数紧跟在选项后或者以空格隔开。该参数的指针赋给optarg。
3 单个字符后跟两个冒号,表示该选项后必须跟一个参数。参数必须紧跟在选项后不能以空格隔开。该参数的指针赋给optarg。
getopt处理以'-’开头的命令行参数,如optstring="ab:c::d::",命令行为getopt.exe -a -b host -c keke -d haha
在这个命令行参数中,-a和-h就是选项元素,去掉'-',a,b,c就是选项。host是b的参数,keke是c的参数。但haha并不是d的参数,因为它们中间有空格隔开。
还要注意的是默认情况下getopt会重新排列命令行参数的顺序,所以到最后所有不包含选项的命令行参数都排到最后。
如getopt.sh -a ima -b host -ckeke -d haha, 都最后命令行参数的顺序是: -a -b host -c keke -d ima haha
如果optstring中的字符串以'+'加号开头或者环境变量POSIXLY_CORRE被设置。那么一遇到不包含选项的命令行参数,getopt就会停止,返回-1。
#include
#include
#include
int main(int argc, char *argv[])
{
int result;
opterr = 0; //getopt不向stderr输出错误信息
while( (result = getopt(argc, argv, "ab:c:")) != -1 )
{
switch(result)
{
case 'a':
printf("option=a,optarg=%s\n",optarg);
break;
case 'b':
printf("option=b,optarg=%s\n",optarg);
break;
case 'c':
printf("option=c, optarg=%s\n",optarg);
break;
case '?':
printf("result=?,optarg=%s\n",optarg);
break;
default:
printf("default, result=%c\n",result);
break;
}
printf("argv[%d]=%s\n", optind, argv[optind]);
}
printf("result=-1, optind=%d\n", optind); //看看最后optind的位置
for(result = optind; result < argc; result++) //看看最后的命令行参数,看顺序是否改变了
printf("argv[%d]=%s\n", result, argv[result]);
for(result = 1; result < argc; result++)
printf("\nat the end-----argv[%d]=%s\n", result, argv[result]);
return 0;
}
#include
#include
#include
int main(int argc, char *argv[])
{
int c;
opterr = 0;
while( (c = getopt(argc, argv, "abs:")) != -1 )
switch(c)
{
case 'a':
printf("Found option a\n");
break;
case 'b':
printf("Found option b\n");
break;
case 's':
printf("Found option s with an argument of %d\n",atoi(optarg));
break;
case '?':
printf("Found an option that was not in 'abs:'\n");
}
if(optind < argc)
printf("Left offf at:%s\n",argv[optind]);
return 0;
}
阅读(961) | 评论(0) | 转发(0) |