Jesse Newland

2 Posts tagged with parallel

pigz - Parallel gzip

pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data

An easy way to run many tasks in parallel

seq 10 20 | xargs -n 1 -P 5 sleep
What is this?