1--- 2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3SPDX-License-Identifier: curl 4Long: parallel-immediate 5Help: Do not wait for multiplexing (with --parallel) 6Added: 7.68.0 7Category: connection curl 8Multi: boolean 9Scope: global 10See-also: 11 - parallel 12 - parallel-max 13Example: 14 - --parallel-immediate -Z $URL -o file1 $URL -o file2 15--- 16 17# `--parallel-immediate` 18 19When doing parallel transfers, this option instructs curl that it should 20rather prefer opening up more connections in parallel at once rather than 21waiting to see if new transfers can be added as multiplexed streams on another 22connection. 23