Parallel download using Curl command line utility
My answer is a bit late, but I believe all of the existing answers fall just a little short. The way I do things like this is with xargs, which is capable of running a specified number of commands in subprocesses. The one-liner I would use is, simply: $ seq 1 10 | xargs -n1 … Read more