如果键入了无效的选项/命令,我想让程序达到默认情况,但它甚至不进入while循环。我想知道我做错了什么,以及为了让它正常工作我需要改变什么,它只有在使用正确的情况下才有效。 :)
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <string.h>
int main (int argc, char *argv[]){
const char *optstring = "rs:pih";
char option;
while ((option = getopt(argc, argv, optstring)) != EOF) {
printf("I'm in the while loop!");
switch (option) {
case 'r':
break;
case 's':
printf("Second Argument: %s", optarg);
break;
case 'p':
printf("p");
break;
case 'i':
printf("i");
break;
case 'h':
printf("h");
break;
default:
printf("nothing");
}
}
return 0;
}
答案 0 :(得分:0)
来自评论:
./program_name d
没有旗帜。尝试:./ program_name -r -s foo -p
您还可以打印通过以下方式解析的剩余选项:
for (int i = optind; i < argc; i++) {
printf("remaining argument[%d]: %s\n", i, argv[i]);
}