Following this manual, I'm trying to wget only the files that have been changed after the last wget.
After executing wget -S *link to server* the file is downloaded, but the timestamp of the file is the one from the local system, rather than that of the machine(by using ls -l as you can imagine)
And, when I execute wget -N *link to server*, the file gets downloaded(regardless of it not having any chances made to it) and at the end of the output of the command is the following line:
Last-modified header missing -- time-stamps turned off.
My question is: Why does the timestamping not work? How do I resolve that warning?