我正在用 c 编写一个程序,它接受命令行参数,如 --version 、 --download 。
当我这样做时:
$program --version --download file
程序输出版本并下载文件。但是当我这样做时:
$program --download --version file
程序认为--version
是 的参数--download
。
我已经使用getopt_long()
函数来解析命令行参数。这是我的代码片段:
while ((ch = getopt_long(argc, argv, "d:g:hv", longoptions, &optindex)) != -1 )
{
switch(ch)
{
case 'd' :
if ( optarg )
printf("Downloading %s...\n" , optarg);
iso(optarg);
break ;
case 'g' :
if ( optarg )
printf("Downloading glug-mirror automation script for %s ...\n", optarg);
getscript(optarg);
break ;
case 'v' :
printf("glug version 1.0.0 ( NIT Hamirpur)\n");
break ;
case 'h' :
usage(status);
break ;
default :
status = 2 ;
usage(status);
}
}