在 C 中使用 getopt 作为命令行参数
Using getopt in C for command line arguments
我正在尝试接受命令行参数。如果我想有多个可选的命令行参数,我该怎么做呢?例如,您可以通过以下方式 运行 程序:
(a 是每个实例都需要的,但 -b -c -d 可以选择性地以任何顺序给出)
./myprogram -a
./myprogram -a -c -d
./myprogram -a -d -b
我知道 getopt() 的第三个参数是选项。我可以将这些选项设置为 "abc" 但我设置 switch case 的方式会导致循环在每个选项处中断。
就 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;
}
我正在尝试接受命令行参数。如果我想有多个可选的命令行参数,我该怎么做呢?例如,您可以通过以下方式 运行 程序: (a 是每个实例都需要的,但 -b -c -d 可以选择性地以任何顺序给出)
./myprogram -a
./myprogram -a -c -d
./myprogram -a -d -b
我知道 getopt() 的第三个参数是选项。我可以将这些选项设置为 "abc" 但我设置 switch case 的方式会导致循环在每个选项处中断。
就 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;
}