2022-08-08 19:32:21 +00:00
|
|
|
```console
|
|
|
|
$ 03_03_positional_mult_derive --help
|
|
|
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Usage:
|
2022-08-08 19:32:21 +00:00
|
|
|
03_03_positional_mult_derive[EXE] [NAME]...
|
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Arguments:
|
2022-08-29 20:09:06 +00:00
|
|
|
[NAME]...
|
2022-08-08 19:32:21 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-08-08 19:32:21 +00:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
|
|
|
|
|
|
|
$ 03_03_positional_mult_derive
|
|
|
|
name: []
|
|
|
|
|
|
|
|
$ 03_03_positional_mult_derive bob
|
|
|
|
name: ["bob"]
|
|
|
|
|
|
|
|
```
|