Subcommands (1)
Options (4)
-j, --jobsbooleanRead arguments from `stdin`, run 4 jobs at once
Example:
ls *.txt | parallel {{[-j|--jobs]}} 4 gzip-S, --sshloginbooleanRun on multiple machines via SSH
Example:
parallel {{[-S|--sshlogin]}} {{machine1}},{{machine2}} {{command}} ::: {{arg1}} {{arg2}}booleanDownload 4 files simultaneously from a text file containing links showing progress
Example:
parallel {{[-j|--jobs]}} 4 --bar --eta curl {{[-sO|--silent --remote-name]}} {} :::: {{path/to/links.txt}}-t, --verbosebooleanPrint the jobs which `parallel` is running in `stderr`
Example:
parallel {{[-t|--verbose]}} {{command}} ::: {{args}}Examples (8)
Break `stdin` into ~1M blocks, feed each block to `stdin` of new command
Download 4 files simultaneously from a text file containing links showing progress
made by @shridhargupta | data from tldr-pages