You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Aria2 is a much faster downloading utility. https://github.com/aria2/aria2
You can easily fix your script by replacing all the wget occurrences with aria2c and lower case the -O
The text was updated successfully, but these errors were encountered:
I guess much faster way would be to use aria2's multi-connection download capability. From hosts with very high capacity bandwidth like 300Mb/s +, this would help noticeably. 16, split, simultaneously? Very fast.
But curl and wget must support multi-connection from different replicas and ips on DNS already...
Do you have any examples? I cannot find any documentation on how this can be accomplished. In fact, I find the opposite as all documentation seems to point to curl/wget being only able to handle a single connection at a time for a single file.
Reading this GitHub, I realize something about making a download split by number and use Node Streams solution to make multiple download of one file split ready the files and groups all in the end
Aria2 is a much faster downloading utility.
https://github.com/aria2/aria2
You can easily fix your script by replacing all the
wget
occurrences witharia2c
and lower case the-O
The text was updated successfully, but these errors were encountered: