Cargo Commander serves to fill the gap in the cargo
commands capabilities, namely not being able to run
commands in a similar fashion that npm
does with scripts.
Either create your commands under a [commands]
section in your Cargo.toml
file, or create a new
Commands.toml
file which uses the exact same syntax as if it had been under the commands section.
```shell
cargo install cargo-commander
cargo cmd COMMAND ```
```toml
[commands] hello = "echo world" multiple = ["echo first", "echo second"] advanced = { cmd = "", shell = "python"} ```