A CLI tool for similar name suggestions to provide helps like "Did you mean?"
The library version is placed here.
bash
cargo install suggestion-cli
```bash $ suggest --help suggestion-cli 0.1.0 A CLI tool for similar name suggestions to provide helps like "Did you mean?"
USAGE: suggest [POSSIBLE_VALUES]...
ARGS:
Input to check if similar name exists
OPTIONS: -h, --help Print help information -V, --version Print version information ```
``bash
$ suggest instakk update install
The
instakkinput is similar to
install`.
$ suggest hoge update install
No similar name for the hoge
input was found.
$ suggest install update install
The same value with the install
input exists.
```
Contributions, including issues and pull requests, are very welcome.