Rolf> is it possible to resume downloads with wget -c

Yes but it's not fun.
$ cat bin/Wwwoffle-continue-later
#Say a file was gotten halfway then got hungup.
#Then use this script when offline.
set -eu
if ! test $# -eq 1; then echo $0: 1>&2 only one arg for now; exit 5; fi
cd /var/tmp
wget -x "$1"
onetimejob<<!
cd /var/tmp
wget -x -c -Y off "$1" &
echo $0: do wwwoffle-write if successful.|mail -s "$1" $USER
!
#My onetimejob command queues a job to be done upon the next connection.

Reply via email to