parallel: add example (#12204)

This commit is contained in:
Fazle Arefin
2024-02-08 18:03:52 +11:00
committed by GitHub
parent 0d2a720eed
commit 9d79aff615

View File

@@ -26,3 +26,11 @@
- Run on multiple machines via SSH:
`parallel -S {{machine1}},{{machine2}} {{command}} ::: {{arg1}} {{arg2}}`
- Download 4 files simultaneously from a text file containing links showing progress:
`parallel -j4 --bar --eta wget -q {} :::: {{path/to/links.txt}}`
- Print the jobs which `parallel` is running in `stderr`:
`parallel -t {{command}}`