从命令行将参数传递给C程序

时间:2009-01-31 05:17:24

标签: c linux arguments

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

例如,

./myprogram 42 -b -s

那么程序会将该数字42存储为int并执行某些代码部分,具体取决于它是什么参数-b或-s。

6 个答案:

答案 0 :(得分:38)

您可以使用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;
 }

答案 1 :(得分:25)

在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;
}

可以在线找到更多信息,例如此Arguments to main文章。

答案 2 :(得分:11)

考虑使用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;
}

相关:

答案 3 :(得分:7)

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

答案 4 :(得分:5)

您可以考虑使用getopt()(同一个库的替代界面),而不是argp_parse()

来自libc manual

  

getopt更为标准(   短选项只有它的一个版本   部分POSIX标准),但使用   argp_parse通常更容易   非常简单和非常复杂的选项   结构,因为它做了更多   为你做的肮脏的工作。

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

N.B。带getopt的GNU getopt_long是GNU LGPL。

答案 5 :(得分: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中建议的其中一种解决方案。