我正在努力尝试接受命令行参数。如果我想拥有多个可选的命令行参数,我该怎么做呢?例如,您可以通过以下方式运行该程序: (a是每个实例都需要,但-b -c -d可以任意和任意顺序给出)
./myprogram -a
./myprogram -a -c -d
./myprogram -a -d -b
我知道getopt()的第三个参数是选项。我可以将这些选项设置为" abc"但是我设置开关盒的方式会导致循环在每个选项中断开。
答案 0 :(得分:4)
就getopt()
而言,顺序无关紧要。重要的是你getopt()
的第三个参数(即:它的格式字符串)是正确的:
以下格式字符串都是等效的:
"c:ba"
"c:ab"
"ac:b"
"abc:"
在您的特定情况下,格式字符串只需要类似"abcd"
,并且switch()
语句已正确填充。
以下最小例子将有所帮助。
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int
main (int argc, char **argv)
{
int aflag = 0;
int bflag = 0;
char *cvalue = NULL;
int index;
int c;
opterr = 0;
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 ();
}
printf ("aflag = %d, bflag = %d, cvalue = %s\n",
aflag, bflag, cvalue);
for (index = optind; index < argc; index++)
printf ("Non-option argument %s\n", argv[index]);
return 0;
}