Run commands on multiple CPU cores. More information: https://www.gnu.org/software/parallel.
parallel gzip ::: {{file1}} {{file2}} {{file3}}
stdin
, run 4 jobs at once:ls *.txt | parallel -j4 gzip
parallel convert {} {.}.png ::: *.jpg
{{args}} | parallel -X {{command}}
stdin
of new command:cat {{big_file.txt}} | parallel --pipe --block 1M {{command}}
parallel -S {{machine1}},{{machine2}} {{command}} ::: {{arg1}} {{arg2}}