mirror of
https://github.com/clap-rs/clap
synced 2024-12-16 07:42:32 +00:00
20 lines
337 B
Markdown
20 lines
337 B
Markdown
|
```console
|
||
|
$ 02_apps --help
|
||
|
MyApp 1.0
|
||
|
Kevin K. <kbknapp@gmail.com>
|
||
|
Does awesome things
|
||
|
|
||
|
USAGE:
|
||
|
02_apps[EXE] --two <VALUE> --one <VALUE>
|
||
|
|
||
|
OPTIONS:
|
||
|
-h, --help Print help information
|
||
|
--one <VALUE>
|
||
|
--two <VALUE>
|
||
|
-V, --version Print version information
|
||
|
|
||
|
$ 02_apps --version
|
||
|
MyApp 1.0
|
||
|
|
||
|
```
|