summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/demo.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/clap/examples/demo.md')
-rw-r--r--vendor/clap/examples/demo.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/vendor/clap/examples/demo.md b/vendor/clap/examples/demo.md
new file mode 100644
index 000000000..9b0e7e260
--- /dev/null
+++ b/vendor/clap/examples/demo.md
@@ -0,0 +1,20 @@
+*Jump to [source](demo.rs)*
+
+**This requires enabling the `derive` feature flag.**
+
+Used to validate README.md's content
+```console
+$ demo --help
+clap [..]
+A simple to use, efficient, and full-featured Command Line Argument Parser
+
+USAGE:
+ demo[EXE] [OPTIONS] --name <NAME>
+
+OPTIONS:
+ -c, --count <COUNT> Number of times to greet [default: 1]
+ -h, --help Print help information
+ -n, --name <NAME> Name of the person to greet
+ -V, --version Print version information
+
+```