C - getopt切换while循环和默认情况下的无效选项

时间:2017-09-13 03:38:19

标签: c switch-statement getopt

如果键入了无效的选项/命令,我想让程序达到默认情况,但它甚至不进入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;
}

1 个答案:

答案 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]);
}