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