```sh cargo runcc ``` ```trycmd $ cargo-runcc ? 2 cargo-runcc 2.0.3 Equal Ma Run commands concurrently USAGE: cargo runcc [OPTIONS] [COMMAND]... ARGS: ... Commands to run concurrently OPTIONS: -c, --config Config file path -e, --env Specify env vars with K=V -h, --help Print help information -k, --kill What to do after some command exits --max-label-length Max length to print label in logs -V, --version Print version information ``` ```sh cargo runcc --help ``` ```trycmd $ cargo-runcc --help cargo-runcc 2.0.3 Equal Ma Run commands concurrently USAGE: cargo runcc [OPTIONS] [COMMAND]... ARGS: ... Commands to run concurrently OPTIONS: -c, --config Config file path. Can't be used with positional arguments. See https://github.com/runcc-rs/runcc#usage for details -e, --env Specify env vars with K=V -h, --help Print help information -k, --kill What to do after some command exits -k None (default) : do nothing -k WhenAnyExited : kill all commands when any exited -k WhenAnySucceeded : kill all commands when any exited with status == 0 -k WhenAnyFailed : kill all commands when any exited with status != 0 -k : kill all commands when any exited with status == --max-label-length Max length to print label in logs Defaults to the max length of all labels -V, --version Print version information ```