I would like to get a string passed in by the user on the command line. The string is basically a specific argv element I'm trying to get.

For example: on linux when the user types in

> ./program -p hello

in the command line, I would like to get the string "hello"

Right now I have this:

  while(argc != 3){
           pattern = argv[optind]
  }

but when I printf("%s", pattern);, the terminal prints endless (null).

I have working code for while(argc != 0), while(argc != 2) already for other parts of the getopt.

UPDATED: I guess I should give a little more detail. Yes I am using getopt for this, so everything is already defined in my int main().

Basically my program has different options, and the option is choosen by whatever letter the user enters after the program's name. It can be

./program -p
./program -a
./program -c 

and depending on the option, the user would enter a different set of information after the option. So for example again

 ./program -a file1 file2

in this case file1 and file2 would be specific text files

 ./program -p hello

in this case hello is not a text file, but I want it to be a string used for something else.

Which is why I didn't choose to approach writing the program with specific argv[#], but instead argv[optind] under each flag. That way it will just get the index of the next element, vs a specfic element.

Here is more of my code for more understanding.

int main(int argc, char *argv[]){

int c;
int cflag = 0;
int wflag = 0;
int lflag = 0;
int hflag = 0;
int pflag = 0;


char* sourceFile;
char* pattern;

while ((c = getopt (argc, argv, "cwlph?")) != -1){
        switch(c){
        case 'c':
            cflag = 1;
            break;
        case 'w':
            wflag = 1;
            break;          
        case 'l':
            lflag = 1;
            break;
        case 'p':
            pflag = 1;
            break;          
        case 'h':
        case '?':
            hflag = 1;
            break;
        default:
            exit(EXIT_FAILURE);
    }
}
if(hflag == 1)
    help(argv[0], OPTIONS);

if(cflag == 0 && wflag == 0 && hflag == 0){
    cflag = 1;
    wflag = 1; 
    hflag = 1;
    while(argc != 0){

        sourceFile = argv[optind];
                    //calls a function

        if(optind == 1)
            break;
        argc--;

    }

}



while(argc != 2){
    sourceFile = argv[optind];
    if(cflag){
        //calls a function
    }

    if(wflag){
        //calls a function
    }

    if(lflag){
        //calls a function
    }

    printf("%s\n", sourceFile);

    if(optind == 1)
        break;
    optind++;
    argc--;
}

if(pflag ==0){
    pflag = 1;
    while(argc != 3){
        pattern = argv[optind];
        printf("%s", pattern);

    }
}

return 0;
}
link|improve this question

a little more code would be great. But I guess your while condition is wrong. It should be something like while(argc > 3) or if(argc != 3) – juergen d Dec 11 '11 at 9:24
could you show the entire block of code? – Nathan Fellman Dec 11 '11 at 9:24
feedback

closed as not a real question by 一二三, crazyscot, wong2, Paul Hankin, Basile Starynkevitch Dec 11 '11 at 10:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

Your question becomes "how to use getopt"...

Here is an example I'm copying from some code of mine:

static const struct option options_tab[] = {
  /* name, has_arg, &flag, val */
  { "help", no_argument, 0, 'h' },
  { "port", required_argument, 0, 'P' },
  { "host", required_argument, 0, 'H' },
  { "url", required_argument, 0, 'U' },
  { "jobs", required_argument, 0, 'j' },
  { "nice", required_argument, 0, 'n' },
  { "htpasswd", required_argument, 0, 'W' },
  {(char*)0, (int)0, (int*)0, (int)0}
 };

int main (int argc, char**argv) {

  while (1) {
    int c = 0;
    int option_index = 0;
    c = getopt_long (argc, argv, "hP:H:U:j:n:W:",
                     options_tab, &option_index);
    if (c<0) break;
    switch (c) {
      case 'h':            
        usage();
        break;
      case 'H':
        iaca_hoststr = optarg;
        break;
      /// etc...
    }
  }
 }

Read carefully the getopt man page.

But you don't use the pattern word appropriately. No patterns are involved here.

link|improve this answer
pattern = a specific the specfic element i am trying to get from getopt – livelaughlove Dec 11 '11 at 9:58
a specific element cannot be a pattern. See en.wikipedia.org/wiki/Pattern and en.wikipedia.org/wiki/Pattern_matching – Basile Starynkevitch Dec 11 '11 at 10:00
ok u'r not getting it. i'm just trying to get a string from a specific element and name it pattern. – livelaughlove Dec 11 '11 at 10:01
But your use of the word pattern is inappropriate and confusing in that context. Choosing the right words is important when asking some question... Good terminology is part of problem solving. – Basile Starynkevitch Dec 11 '11 at 10:03
i apologize for the confusion. but i've explained the intended purpose of what i've been referring to as pattern, in my question. – livelaughlove Dec 11 '11 at 10:08
show 2 more comments
feedback

You should usually use a command-line parsing library (for example getopt) to do this, but it's easy enough to do yourself.

char *pattern = 0;
for (int i = 1; i < argc - 1; ++i) {
    if (!strcmp(argv[i], "-p")) {
        pattern = argv[i + 1];
        break;
    }
}
if (!pattern) {
    fprintf(stderr, "Failed to find -p argument.\n");
    exit(1);
}
link|improve this answer
i am actually using getopt and i updated my question. but thanks for letting me know how to do it without =] – livelaughlove Dec 11 '11 at 9:46
feedback

It is not a pattern, it is a string (that is, a pointer to an array of char). The count and string array is passed as arguments to main. So if you start your program with ./program -p hello you should define your main function as

int main(int argc, char** argv) {
  /* .... */
}

and the for your case:

  • argc == 3
  • argv[0] is the "./program" string (without the quotes)
  • argv[1] is the "-p" string (without quotes)
  • argv[2] is the "hello" string (without the quotes)
  • argv[3] is the null pointer
link|improve this answer
i updated my question to further clarify – livelaughlove Dec 11 '11 at 9:47
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.