mirror of
https://github.com/clap-rs/clap
synced 2025-01-25 02:45:00 +00:00
9a645d2d19
After looking at more examples, I've become more attached to this briefer format. Part of #4132
384 B
384 B
$ 03_05_default_values --help
A simple to use, efficient, and full-featured Command Line Argument Parser
Usage: 03_05_default_values[EXE] [NAME]
Arguments:
[NAME] [default: alice]
Options:
-h, --help Print help information
-V, --version Print version information
$ 03_05_default_values
name: "alice"
$ 03_05_default_values bob
name: "bob"