💾 Archived View for freeshell.de › tldr › parallel.gmi captured on 2023-09-28 at 16:46:19. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-04-28)
-=-=-=-=-=-=-
Run commands on multiple CPU cores.
parallel gzip ::: {file1} {file2} {file3}
ls *.txt | parallel -j4 gzip
parallel convert {} {.}.png ::: *.jpg
{args} | parallel -X {command}
cat {big_file.txt} | parallel --pipe --block 1M {command}
parallel -S {machine1},{machine2} {command} ::: {arg1} {arg2}
Copyright © 2014—present the tldr-pages team and contributors.
This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).