-Z
(or --parallel
) option that instead instructs curl to attempt to do the specified transfers in a parallel fashion. When this is enabled, curl will do a lot of transfers simultaneously instead of serially. It will do up to 50 transfers at the same time by default and as soon as one of them has completed, the next one will be kicked off.--parallel-max
option is there to allow you to change that amount.--parallel-immediate
, curl is instructed to reverse the prioritization and instead prefer creating a new connection immediately rather than risk waiting a little to see if the transfer can be multiplexed of another connection.