37

所以我在 Linux 中,我想让一个程序在你从命令行执行它时接受参数。

例如,

./myprogram 42 -b -s

因此,程序会将数字 42 存储为 int 并根据它得到的参数(如 -b 或 -s)执行某些代码部分。

4

6 回答 6

42

您可以使用getopt

 #include <ctype.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>

 int
 main (int argc, char **argv)
 {
   int bflag = 0;
   int sflag = 0;
   int index;
   int c;

   opterr = 0;

   while ((c = getopt (argc, argv, "bs")) != -1)
     switch (c)
       {
       case 'b':
         bflag = 1;
         break;
       case 's':
         sflag = 1;
         break;
       case '?':
         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 ("bflag = %d, sflag = %d\n", bflag, sflag);

   for (index = optind; index < argc; index++)
     printf ("Non-option argument %s\n", argv[index]);
   return 0;
 }
于 2009-01-31T05:21:28.420 回答
28

在 C 中,这是使用传递给main()函数的参数来完成的:

int main(int argc, char *argv[])
{
    int i = 0;
    for (i = 0; i < argc; i++) {
        printf("argv[%d] = %s\n", i, argv[i]);
    }
    return 0;
}

更多信息可以在网上找到,例如这篇关于主要文章的参数。

于 2009-01-31T05:19:37.817 回答
10

考虑使用getopt_long(). 它允许任何组合的短期和长期期权。

#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>

/* Flag set by `--verbose'. */
static int verbose_flag;

int
main (int argc, char *argv[])
{
  while (1)
    {
      static struct option long_options[] =
    {
      /* This option set a flag. */
      {"verbose", no_argument,       &verbose_flag, 1},
      /* These options don't set a flag.
         We distinguish them by their indices. */
      {"blip",    no_argument,       0, 'b'},
      {"slip",    no_argument,       0, 's'},
      {0,         0,                 0,  0}
    };
      /* getopt_long stores the option index here. */
      int option_index = 0;

      int c = getopt_long (argc, argv, "bs",
               long_options, &option_index);

      /* Detect the end of the options. */
      if (c == -1)
    break;

      switch (c)
    {
    case 0:
      /* If this option set a flag, do nothing else now. */
      if (long_options[option_index].flag != 0)
        break;
      printf ("option %s", long_options[option_index].name);
      if (optarg)
        printf (" with arg %s", optarg);
      printf ("\n");
      break;
    case 'b':
      puts ("option -b\n");
      break;
    case 's':
      puts ("option -s\n");
      break;
    case '?':
      /* getopt_long already printed an error message. */
      break;

    default:
      abort ();
    }
    }

  if (verbose_flag)
    puts ("verbose flag is set");

  /* Print any remaining command line arguments (not options). */
  if (optind < argc)
    {
      printf ("non-option ARGV-elements: ");
      while (optind < argc)
    printf ("%s ", argv[optind++]);
      putchar ('\n');
    }

  return 0;
}

有关的:

于 2009-01-31T06:19:10.893 回答
7

看看 getopt 库;这几乎是这类事情的黄金标准。

于 2009-01-31T05:21:03.820 回答
5

除了getopt(),您还可以考虑使用argp_parse()(同一库的替代接口)。

libc 手册

getopt更标准(它的短选项版本是 POSIX 标准的一部分),但是 argp_parse对于非常简单和非常复杂的期权结构来说,使用通常更容易,因为它为您做了更多的脏工作。

但我总是对标准感到满意getopt

注意 GNUgetoptgetopt_longGNU LGPL。

于 2009-01-31T14:35:31.547 回答
4

其他人已经击中了这个:

  • 使您可以直接访问命令行的标准参数main(int argc, char **argv)(在它被 shell 破坏和标记之后)
  • 有非常标准的工具来解析命令行:getopt()getopt_long()

但是正如您所看到的,使用它们的代码有点罗嗦,而且非常符合规范。我通常会使用以下方式将其推到视野之外:

typedef
struct options_struct {
   int some_flag;
   int other_flage;
   char *use_file;
} opt_t;
/* Parses the command line and fills the options structure, 
 * returns non-zero on error */
int parse_options(opt_t *opts, int argc, char **argv);

然后主要的第一件事:

int main(int argc, char **argv){
   opt_t opts;
   if (parse_options(&opts,argc,argv)){
      ...
   } 
   ...
}

或者,您可以使用Argument-parsing helpers for C/UNIX中建议的解决方案之一。

于 2009-01-31T15:02:56.093 回答