diff options
Diffstat (limited to 'vendor/clap/examples/tutorial_derive/02_apps.md')
-rw-r--r-- | vendor/clap/examples/tutorial_derive/02_apps.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/clap/examples/tutorial_derive/02_apps.md b/vendor/clap/examples/tutorial_derive/02_apps.md new file mode 100644 index 0000000..b5ae114 --- /dev/null +++ b/vendor/clap/examples/tutorial_derive/02_apps.md @@ -0,0 +1,16 @@ +```console +$ 02_apps_derive --help +Does awesome things + +Usage: 02_apps_derive[EXE] --two <TWO> --one <ONE> + +Options: + --two <TWO> + --one <ONE> + -h, --help Print help + -V, --version Print version + +$ 02_apps_derive --version +MyApp 1.0 + +``` |