mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
19 lines
366 B
Markdown
19 lines
366 B
Markdown
|
```console
|
||
|
$ 02_crate --help
|
||
|
clap [..]
|
||
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
||
|
|
||
|
USAGE:
|
||
|
02_crate[EXE] --two <VALUE> --one <VALUE>
|
||
|
|
||
|
OPTIONS:
|
||
|
-h, --help Print help information
|
||
|
--one <VALUE>
|
||
|
--two <VALUE>
|
||
|
-V, --version Print version information
|
||
|
|
||
|
$ 02_crate --version
|
||
|
clap [..]
|
||
|
|
||
|
```
|