Skip to content

Commit

Permalink
usingcurl/downloads/multiple.md: mention and link parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Dec 16, 2023
1 parent df47615 commit 431e73f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions usingcurl/downloads/multiple.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ The `-O` is similarly just an instruction for a single download so if you
download multiple URLs, use more of them:

curl -O -O http://example.com/1 http://example.com/2

## Parallel

Unless told otherwise, curl will download all given URLs in a serial fashion,
one by one. By using `-Z` (or `--parallel`) curl can instead do the transfers
[in parallel](../../cmdline/urls/parallel.md): several ones at once.

0 comments on commit 431e73f

Please sign in to comment.