diff --git a/pages/common/parallel.md b/pages/common/parallel.md index 63708ba13e..5b076b8f9f 100644 --- a/pages/common/parallel.md +++ b/pages/common/parallel.md @@ -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}}`