2022-07-19 18:29:31 +00:00
|
|
|
```console
|
|
|
|
$ 04_03_relations --help
|
|
|
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
|
|
|
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: 04_03_relations[EXE] [OPTIONS] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE]
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Arguments:
|
2022-09-07 20:29:15 +00:00
|
|
|
[INPUT_FILE] some regular input
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-09-07 20:29:15 +00:00
|
|
|
--set-ver <VER> set version manually
|
|
|
|
--major auto inc major
|
|
|
|
--minor auto inc minor
|
|
|
|
--patch auto inc patch
|
|
|
|
--spec-in <SPEC_IN> some special input argument
|
|
|
|
-c <CONFIG>
|
2023-01-03 16:49:43 +00:00
|
|
|
-h, --help Print help
|
|
|
|
-V, --version Print version
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
$ 04_03_relations
|
|
|
|
? failed
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the following required arguments were not provided:
|
2022-09-07 20:29:15 +00:00
|
|
|
<--set-ver <VER>|--major|--minor|--patch>
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: 04_03_relations[EXE] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE]
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2023-01-03 19:22:35 +00:00
|
|
|
For more information, try '--help'.
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
$ 04_03_relations --major
|
|
|
|
Version: 2.2.3
|
|
|
|
|
|
|
|
$ 04_03_relations --major --minor
|
|
|
|
? failed
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the argument '--major' cannot be used with '--minor'
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: 04_03_relations[EXE] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE]
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2023-01-03 19:22:35 +00:00
|
|
|
For more information, try '--help'.
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
$ 04_03_relations --major -c config.toml
|
|
|
|
? failed
|
2023-01-03 16:22:40 +00:00
|
|
|
error: the following required arguments were not provided:
|
2022-09-07 20:29:15 +00:00
|
|
|
<INPUT_FILE|--spec-in <SPEC_IN>>
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: 04_03_relations[EXE] -c <CONFIG> <--set-ver <VER>|--major|--minor|--patch> <INPUT_FILE|--spec-in <SPEC_IN>>
|
2022-07-19 18:29:31 +00:00
|
|
|
|
2023-01-03 19:22:35 +00:00
|
|
|
For more information, try '--help'.
|
2022-07-19 18:29:31 +00:00
|
|
|
|
|
|
|
$ 04_03_relations --major -c config.toml --spec-in input.txt
|
|
|
|
Version: 2.2.3
|
|
|
|
Doing work using input input.txt and config config.toml
|
|
|
|
|
|
|
|
```
|