rush-parallel

Execute multiple jobs in parallel across platforms efficiently

brewmacoslinux
Try with needOr install directly
Source

About

Cross-platform command-line tool for executing jobs in parallel

Commands

rush

Examples

Run 4 jobs in parallel from a newline-delimited input file$ cat jobs.txt | rush -P 4
Execute commands in parallel with placeholders for input data$ echo -e 'file1.txt\nfile2.txt' | rush 'gzip {}'
Run multiple commands with a specific number of parallel workers$ seq 1 10 | rush -P 2 'echo Processing task {}'