ppss

Execute commands in parallel from a list or input stream

brewmacoslinux
Try with needOr install directly
Source

About

Shell script to execute commands in parallel

Commands

ppss

Examples

Process multiple files in parallel with a command$ ppss -c 'convert $ITEM input.jpg output.jpg' -f filelist.txt
Run command on each item from standard input with 4 parallel jobs$ cat urls.txt | ppss -c 'curl $ITEM' -p 4
Execute script on items with automatic job count detection$ ppss -c './process.sh $ITEM' -f items.txt -A