1--- 2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3SPDX-License-Identifier: curl 4Long: parallel-max 5Arg: <num> 6Help: Maximum concurrency for parallel transfers 7Added: 7.66.0 8Category: connection curl 9Multi: single 10See-also: 11 - parallel 12Example: 13 - --parallel-max 100 -Z $URL ftp://example.com/ 14--- 15 16# `--parallel-max` 17 18When asked to do parallel transfers, using --parallel, this option controls 19the maximum amount of transfers to do simultaneously. 20 21This option is global and does not need to be specified for each use of 22--next. 23 24The default is 50. 25