I\'m using wget to download website content, but wget downloads the files one by one.
How can I make wget download using 4 simultaneous connections?
Since GNU parallel was not mentioned yet, let me give another way:
cat url.list | parallel -j 8 wget -O {#}.html {}