Hi,
Recently I was downloading a file using wget. File size is around 10gigs. Around 55% it said connection closed and started downloading the file from first saying try2. Once connection gets closed I want it to resume with the first link itself. I mean it resume 55% and continue. How do i do that?
To continue an aborted download:
wget -c https://example.com
or:
wget --continue https://example.com
1 Like