42
8
Let's say there's an url, let's call it http://www.some-url.com/folder/
This location has directory listing enabled, therefore I can do this:
wget -r -np http://www.some-url.com/folder/
To download all its contents with all the files and subfolders and their files.
Now, what should I do if I want to repeat this process again, a month later, and I don't want to download everything again, only add new/changed files?
6But -N is useless if retrieved file has not Last-Modified header. – unibasil – 2017-12-29T04:27:58.223