summaryrefslogtreecommitdiffstats
path: root/vendor/clap/examples/demo.md
blob: 772d98dca07d2ae12ab9d3a7ea0be704d6b00974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
```console
$ demo --help
A simple to use, efficient, and full-featured Command Line Argument Parser

Usage: demo[EXE] [OPTIONS] --name <NAME>

Options:
  -n, --name <NAME>    Name of the person to greet
  -c, --count <COUNT>  Number of times to greet [default: 1]
  -h, --help           Print help
  -V, --version        Print version

$ demo --name Me
Hello Me!

```
*(version number and `.exe` extension on windows replaced by placeholders)*