Reprendre et continuer un téléchargement échoué.
$ curl -O https://$domain/$file (1)
$ wget -c https://$domain/$file (2)
1 | If any download fails but let you with a portion of downloaded file |
2 | wget -c will complete the download of the file |
You need to ensure that the $file file name of the downloaded portion you have is the correct file name, not a modified one with for instance some kind of suffix : ".part" ; "-partial" ; else wget wont find it.
|