Search code examples
directorywget

How to use wget to continue my interrupted downloading


I use Wget to download all files in a directory of a site. But it was interrupted. How could I make it to continue?


Solution

  • You want wget -c url, where -c stands for continue and url is the URL of the interrupted file.