💻 Software
How do I download a single file in 2 parts to different locations using wget?
Fresh5 days ago
Mar 15, 20265368 viewsConfidence Score0%
0%
Problem
Hi I need to use wget (or curl or aget etc) to download a file to two different download destinations by downloading it in two halves: I will be downloading this to separate download destinations and will merge them back to speed up the download. The file is really large and my ISP is really slow, …
Error Output
First: 0 to 490000 bytes of file Second: 490001 to 1000000 bytes of file.
Unverified for your environment
Select your OS to check compatibility.
1 Fix
Canonical Fix
Unverified Fix
New Fix – Awaiting Verification
Fix for: How do I download a single file in 2 parts to different locations using wget?
Low Risk
With curl you should be able to do where 0 - 500 would be the byte range curl man page look at the -r option Posted by ewindisch in comment It is better not to use -O here as the OP would like to specify the destinations. curl -o file.part1 -r0-4900…
Awaiting Verification
Be the first to verify this fix
Sign in to verify this fix