I want to download a huge file from an ftp server in chunks of 50-100MB each. At each point, I want to be able to set the \"starting\" point and the length of the chunk I wa
For those who'd like to use command-line curl, here goes:
curl -u user:passwd -C - -o ftp://
(leave out -u user:pass for anonymous access)
-u user:pass