How do I read command-line parameters in C? For example, in
./test --help
or
./test --build
how do I access "--build" or "--help"?
|
How do I read command-line parameters in C? For example, in
or
how do I access "--build" or "--help"? |
||||
|
|
|
You can use the
Edit: the parameters don't need to be named
|
|||||||||||||
|
|
Your parameters are in argv:
if you printf the content of argv (argv[0],argv[1] etc) youll get the idea. try:
|
|||
|
|
|
The very basic is to use the arguments One more advanced method is to use getopt... http://www.gnu.org/s/libc/manual/html_node/Getopt.html |
|||
|
|
|
There are several ways to do it [as usual]. Command line arguments are read from argv (passed to main along with argc). You can parse those yourself and have a bit switch setting flags each time a new option is found in argv. Or you can use a library to parser command line arguments. I suggest libc getopt (google it). |
|||
|
|