parallel.md (916B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Short: Z 5 Long: parallel 6 Help: Perform transfers in parallel 7 Added: 7.66.0 8 Category: connection curl global 9 Multi: boolean 10 Scope: global 11 See-also: 12 - next 13 - verbose 14 - parallel-max 15 - parallel-immediate 16 Example: 17 - --parallel $URL -o file1 $URL -o file2 18 --- 19 20 # `--parallel` 21 22 Make curl perform all transfers in parallel as compared to the regular serial 23 manner. Parallel transfer means that curl runs up to N concurrent transfers 24 simultaneously and if there are more than N transfers to handle, it starts new 25 ones when earlier transfers finish. 26 27 With parallel transfers, the progress meter output is different from when 28 doing serial transfers, as it then displays the transfer status for multiple 29 transfers in a single line. 30 31 The maximum amount of concurrent transfers is set with --parallel-max and it 32 defaults to 50.