1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 06:55:25 +02:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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}}`