2
0

parallel-immediate.d 655 B

1234567891011121314151617
  1. c: Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: parallel-immediate
  4. Help: Do not wait for multiplexing (with --parallel)
  5. Added: 7.68.0
  6. See-also: parallel parallel-max
  7. Category: connection curl
  8. Example: --parallel-immediate -Z $URL -o file1 $URL -o file2
  9. Multi: boolean
  10. ---
  11. When doing parallel transfers, this option will instruct curl that it should
  12. rather prefer opening up more connections in parallel at once rather than
  13. waiting to see if new transfers can be added as multiplexed streams on another
  14. connection.
  15. This option is global and does not need to be specified for each use of
  16. --next.