rpar - Rust Parallel command executor
Utility used for executing a single linux/macOS command multiple times in a parallel way
rpar [RPAR ARGUMENTS] -- COMMAND [COMMAND ARGUMENTS]
./rpar --times 10 --silent -- ls -lor
cargo run -- -t 10 -s -- ls -l ./rpar -t 1 -u -b -- curl www.google.comarg --times [TIMES] / -t - to execute command [TIMES] times
Default: command is executed 1 time
arg --silent / -s - to suppress output.
Default: output is not suppressed
arg --unparallel / -u - to execute command in sequential way.
Default: command is executed in a parallel way
arg --to_benchmark / -b - to measure time from start to end of executor's work.
Default: time is not measured