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?
Another program that can do this is axel.
axel
axel -n URL
For baisic HTTP Auth,
axel -n "user:password@https://domain.tld/path/file.ext"
Ubuntu man page.