2022-07-19 18:29:31 +00:00
|
|
|
```console
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 01_quick_derive --help
|
2022-07-19 18:29:31 +00:00
|
|
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
|
|
|
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: 01_quick_derive[EXE] [OPTIONS] [NAME] [COMMAND]
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2022-08-31 02:38:37 +00:00
|
|
|
Commands:
|
2022-09-07 20:29:15 +00:00
|
|
|
test does testing things
|
|
|
|
help Print this message or the help of the given subcommand(s)
|
2022-08-26 15:59:27 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Arguments:
|
2022-09-07 20:29:15 +00:00
|
|
|
[NAME] Optional name to operate on
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-09-07 20:29:15 +00:00
|
|
|
-c, --config <FILE> Sets a custom config file
|
|
|
|
-d, --debug... Turn debugging information on
|
2023-01-03 16:49:43 +00:00
|
|
|
-h, --help Print help
|
|
|
|
-V, --version Print version
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
By default, the program does nothing:
|
|
|
|
```console
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 01_quick_derive
|
2022-07-19 18:29:31 +00:00
|
|
|
Debug mode is off
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
But you can mix and match the various features
|
|
|
|
```console
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 01_quick_derive -dd test
|
2022-07-19 18:29:31 +00:00
|
|
|
Debug mode is on
|
|
|
|
Not printing testing lists...
|
|
|
|
|
|
|
|
```
|