2022-07-19 18:29:31 +00:00
|
|
|
```console
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 04_03_relations_derive --help
|
2022-07-19 18:29:31 +00:00
|
|
|
clap [..]
|
|
|
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
|
|
|
|
|
|
|
USAGE:
|
2022-08-08 19:05:08 +00:00
|
|
|
04_03_relations_derive[EXE] [OPTIONS] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE]
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
ARGS:
|
|
|
|
<INPUT_FILE> some regular input
|
|
|
|
|
|
|
|
OPTIONS:
|
2022-07-22 20:43:49 +00:00
|
|
|
--set-ver <VER> set version manually
|
2022-07-19 18:29:31 +00:00
|
|
|
--major auto inc major
|
|
|
|
--minor auto inc minor
|
|
|
|
--patch auto inc patch
|
|
|
|
--spec-in <SPEC_IN> some special input argument
|
2022-07-22 20:43:49 +00:00
|
|
|
-c <CONFIG>
|
|
|
|
-h, --help Print help information
|
2022-07-19 18:29:31 +00:00
|
|
|
-V, --version Print version information
|
|
|
|
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 04_03_relations_derive
|
2022-07-19 18:29:31 +00:00
|
|
|
? failed
|
|
|
|
error: The following required arguments were not provided:
|
|
|
|
<--set-ver <VER>|--major|--minor|--patch>
|
|
|
|
|
|
|
|
USAGE:
|
2022-08-08 19:05:08 +00:00
|
|
|
04_03_relations_derive[EXE] [OPTIONS] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE]
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 04_03_relations_derive --major
|
2022-07-19 18:29:31 +00:00
|
|
|
Version: 2.2.3
|
|
|
|
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 04_03_relations_derive --major --minor
|
2022-07-19 18:29:31 +00:00
|
|
|
? failed
|
|
|
|
error: The argument '--major' cannot be used with '--minor'
|
|
|
|
|
|
|
|
USAGE:
|
2022-08-08 19:05:08 +00:00
|
|
|
04_03_relations_derive[EXE] <--set-ver <VER>|--major|--minor|--patch>
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 04_03_relations_derive --major -c config.toml
|
2022-07-19 18:29:31 +00:00
|
|
|
? failed
|
|
|
|
error: The following required arguments were not provided:
|
|
|
|
<INPUT_FILE|--spec-in <SPEC_IN>>
|
|
|
|
|
|
|
|
USAGE:
|
2022-08-08 19:05:08 +00:00
|
|
|
04_03_relations_derive[EXE] -c <CONFIG> <--set-ver <VER>|--major|--minor|--patch> <INPUT_FILE|--spec-in <SPEC_IN>>
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
|
2022-08-08 19:05:08 +00:00
|
|
|
$ 04_03_relations_derive --major -c config.toml --spec-in input.txt
|
2022-07-19 18:29:31 +00:00
|
|
|
Version: 2.2.3
|
|
|
|
Doing work using input input.txt and config config.toml
|
|
|
|
|
|
|
|
```
|