2022-08-08 19:32:21 +00:00
|
|
|
```console
|
|
|
|
$ 03_03_positional_mult --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[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
|
|
|
|
name: None
|
|
|
|
|
|
|
|
$ 03_03_positional_mult bob
|
|
|
|
name: Some("bob")
|
|
|
|
|
|
|
|
```
|