2022-07-19 18:29:31 +00:00
|
|
|
```console
|
|
|
|
$ 04_04_custom --help
|
|
|
|
A simple to use, efficient, and full-featured Command Line Argument Parser
|
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Usage:
|
2022-07-19 18:29:31 +00:00
|
|
|
04_04_custom[EXE] [OPTIONS] [INPUT_FILE]
|
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Arguments:
|
2022-08-29 20:09:06 +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-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
|
|
|
|
|
|
|
|
$ 04_04_custom
|
|
|
|
? failed
|
|
|
|
error: Can only modify one version field
|
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Usage:
|
2022-07-19 18:29:31 +00:00
|
|
|
04_04_custom[EXE] [OPTIONS] [INPUT_FILE]
|
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
|
|
|
|
$ 04_04_custom --major
|
|
|
|
Version: 2.2.3
|
|
|
|
|
|
|
|
$ 04_04_custom --major --minor
|
|
|
|
? failed
|
|
|
|
error: Can only modify one version field
|
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Usage:
|
2022-07-19 18:29:31 +00:00
|
|
|
04_04_custom[EXE] [OPTIONS] [INPUT_FILE]
|
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
|
|
|
|
$ 04_04_custom --major -c config.toml
|
|
|
|
? failed
|
|
|
|
Version: 2.2.3
|
|
|
|
error: INPUT_FILE or --spec-in is required when using --config
|
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Usage:
|
2022-07-19 18:29:31 +00:00
|
|
|
04_04_custom[EXE] [OPTIONS] [INPUT_FILE]
|
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
|
|
|
|
$ 04_04_custom --major -c config.toml --spec-in input.txt
|
|
|
|
Version: 2.2.3
|
|
|
|
Doing work using input input.txt and config config.toml
|
|
|
|
|
|
|
|
```
|