On 17.05.19 23:09, Peng Yu wrote: > Hi, > > curl has this problem "(18) transfer closed with outstanding read data > remaining". Does wget have a similar problem like this? Thanks. > > https://curl.haxx.se/mail/archive-2018-10/0015.html
The connection is closed prematurely and you do not want to re-download everything. Wget has -c / --continue for that. If you have a recent version of wget, it will use a if-modified-since request header - and sometimes this goes wrong, some servers have issues with that header. In this case add --no-if-modified-since to use a different strategy (HEAD request first, then GET). Regards, Tim
signature.asc
Description: OpenPGP digital signature
