getopt在C中添加额外的功能

时间:2013-09-03 01:47:34

标签: c getopt

这是我的问题。我希望能够在我的应用程序中支持这个:

./cipher [-devh] [-p PASSWD] infile outfile

我设法支持[-devh],但我不知道如何获得[-p PASSWORD]支持。当然,我可以手动检查argc是否为2然后有一堆标志,但我更喜欢使用getopts并认为它会更容易。以下是[-devh]的代码我如何扩展它以便它可以支持它们?

while ( (c = getopt(argc, argv, "devh")) != -1) {
    switch (c) {
    case 'd':
        printf ("option d\n");
        dopt = 1;
        break;
    case 'e':
        printf ("option e\n");
        eopt = 1;
        break;
    case 'v':
        printf ("option v\n");
        vopt = 1;
        break;
    case 'h':
        printf ("option h\n");
        hopt = 1;
        break;

    default:
        printf ("?? getopt returned character code 0%o ??\n", c);
    }
}

1 个答案:

答案 0 :(得分:0)

直接来自getopt上的GNU C Library Reference页面:

while ((c = getopt (argc, argv, "abc:")) != -1)
    switch (c)
    {
        case 'a':
            aflag = 1;
            break;
        case 'b':
            bflag = 1;
            break;
        case 'c':
            cvalue = optarg;
            break;
        case '?':
            if (optopt == 'c')
                fprintf (stderr, "Option -%c requires an argument.\n", optopt);
            else if (isprint (optopt))
                fprintf (stderr, "Unknown option `-%c'.\n", optopt);
            else
                fprintf (stderr, "Unknown option character `\\x%x'.\n", optopt);
            return 1;
        default:
            abort();
    }

c这里是带有可选参数的参数,因此这可能是您正在寻找的语法。

我理解getopt所做的是遍历给定的参数,一次解析一个。因此,当它到达需要第二个参数的选项c(在您的情况下为p)时,它将存储在optarg中。这将分配给您选择的变量(此处为cvalue),以便以后处理。