https://github.com/mgalgs/clap-test
testing multi-valued options using https://github.com/kbknapp/clap-rs
https://github.com/mgalgs/clap-test
Last synced: over 1 year ago
JSON representation
testing multi-valued options using https://github.com/kbknapp/clap-rs
- Host: GitHub
- URL: https://github.com/mgalgs/clap-test
- Owner: mgalgs
- Created: 2015-11-13T18:54:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-13T18:54:55.000Z (over 10 years ago)
- Last Synced: 2025-03-15T07:44:21.669Z (over 1 year ago)
- Language: Rust
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Why?
Currently outputs:
```
$ ./target/debug/clap-test --print hello
error: The following required arguments were not supplied:
USAGE:
clap-test [FLAGS] --print ...
For more information try --help
```
and:
```
$ ./target/debug/clap-test --help
clap-test
USAGE:
clap-test [FLAGS] --print ...
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
--print ... Print stuff
```