xpipe

Split input and feed it into the given utility in parallel

brewmacoslinux
Try with needOr install directly
Source

About

Split input and feed it into the given utility

Commands

xpipe

Examples

Split input lines and process them with grep in parallel$ cat largefile.txt | xpipe grep 'pattern'
Process multiple files in parallel with a command$ find . -name '*.log' | xpipe wc -l
Split stdin and execute command on each chunk$ seq 1 1000 | xpipe -n 4 sort