我实际上遇到了麻烦,我想像那些一样解析多个参数:
./a.out -a 0 L
./a.out -ab
./a.out -abc
我试着用getopt做到但是我没有成功。事实是,我无法像
那样处理多重论证./a.out -abc
./a.out -edg
有没有办法以我想要的方式使用像getopt这样的函数?
或者我应该考虑做(使用getopt):
./a.out -a -b
./a.out -a -b -c
答案 0 :(得分:1)
" ::"使用可选参数创建-a。 -a本身设置options
标志以获得两个单独的参数。 -aopt with attached options接受opt
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[])
{
int c = 0;
int each = 0;
int options = 0;
if ( !( argc == 2 || argc == 4)) {
fprintf(stderr, "Usage:\t%s -aopt\n or\n\t%s -a opt1 opt2\n", argv[0], argv[0]);
return 1;
}
while((c = getopt(argc, argv, "a::")) != -1) {
switch(c) {
case 'a':
if ( optarg) {// -aopt
printf ( "%s\n", optarg);
}
else {
options = 1;// -a by itself
}
break;
default:
fprintf(stderr, "Usage:\t%s -aopt\n or\n\t%s -a opt1 opt2\n", argv[0], argv[0]);
return 1;
}
}
if ( optind + 2 == argc) {
if ( options) {
for ( each = optind; each < argc; each++) {
if ( ( argv[each][0] != '-')) {
printf ( "found argument %s\n", argv[each]);
}
}
}
else {
fprintf(stderr, "Usage:\t%s -aopt\n or\n\t%s -a opt1 opt2\n", argv[0], argv[0]);
return 1;
}
}
return 0;
}