Crates.io | rpar |
lib.rs | rpar |
version | 0.1.0 |
source | src |
created_at | 2024-05-24 19:46:42.999617 |
updated_at | 2024-05-24 19:46:42.999617 |
description | Run terminal command multiple times in parallel |
homepage | |
repository | |
max_upload_size | |
id | 1251491 |
size | 7,109 |
rpar [RPAR ARGUMENTS] -- COMMAND [COMMAND ARGUMENTS]
./rpar -t 10 -s -- ls -l
or
cargo run -- -t 10 -s -- ls -l
./rpar -t 1 -u -- curl www.google.com
arg --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