A simple tool to help repeat commands concurrently from the terminal. It was inspired by the
builtin shell command repeat
but adds support for many threads.
If you have Rust installed, just run:
sh
cargo build --release
You can run it with or without threads as such:
```sh
cargo run --release -- 10 curl https://www.rust-lang.org
cargo run --release -- 10 curl https://www.rust-lang.org -j 2 ```
MIT