1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
# Command-Line Help for `complex-app`
This document contains the help content for the `complex-app` command-line program.
**Command Overview:**
* [`complex-app`↴](#complex-app)
* [`complex-app test`↴](#complex-app-test)
* [`complex-app only-hidden-options`↴](#complex-app-only-hidden-options)
## `complex-app`
An example command-line tool
**Usage:** `complex-app [OPTIONS] [NAME] [COMMAND]`
###### **Subcommands:**
* `test` — does testing things
* `only-hidden-options` — Demo that `Options` is not printed if all options are hidden
###### **Arguments:**
* `<NAME>` — Optional name to operate on
Longer description
###### **Options:**
* `-c`, `--config <FILE>` — Sets a custom config file
* `--target <TARGET>`
Default value: `local`
Possible values:
- `local`:
Do the operation locally
- `remote`
* `-d`, `--debug` — Turn debugging information on
Repeat this option to see more and more debug information.
## `complex-app test`
does testing things
**Usage:** `complex-app test [OPTIONS]`
###### **Options:**
* `-l`, `--list` — lists test values
## `complex-app only-hidden-options`
Demo that `Options` is not printed if all options are hidden
**Usage:** `complex-app only-hidden-options`
<hr/>
<small><i>
This document was generated automatically by
<a href="https://crates.io/crates/clap-markdown"><code>clap-markdown</code></a>.
</i></small>
|