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-09-07 16:03:55 +00:00
|
|
|
Usage: 03_03_positional_mult_derive[EXE] [NAME]...
|
2022-08-08 19:32:21 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Arguments:
|
2022-09-07 20:29:15 +00:00
|
|
|
[NAME]...
|
2022-08-08 19:32:21 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-09-07 20:29:15 +00:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2022-08-08 19:32:21 +00:00
|
|
|
|
|
|
|
$ 03_03_positional_mult_derive
|
|
|
|
name: []
|
|
|
|
|
|
|
|
$ 03_03_positional_mult_derive bob
|
|
|
|
name: ["bob"]
|
|
|
|
|
2022-10-14 13:49:39 +00:00
|
|
|
$ 03_03_positional_mult_derive bob john
|
|
|
|
name: ["bob", "john"]
|
|
|
|
|
2022-08-08 19:32:21 +00:00
|
|
|
```
|