parallel

Execute shell commands in parallel across multiple input items

brewmacoslinux
Try with needOr install directly
Source

About

Shell command parallelization utility

Commands

parallel

Examples

Process multiple files in parallel with a command$ parallel gzip ::: *.txt
Run jobs across multiple CPU cores using xargs-style input$ cat urls.txt | parallel --pipe curl
Execute command with multiple arguments in parallel$ parallel echo {1} {2} ::: A B C ::: 1 2 3