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-09-07 16:03:55 +00:00
|
|
|
Usage: 03_03_positional_mult[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
|
|
|
|
name: None
|
|
|
|
|
|
|
|
$ 03_03_positional_mult bob
|
|
|
|
name: Some("bob")
|
|
|
|
|
|
|
|
```
|