Copying only the changed files while mirroring a website
Posted
by
Rishi Verma
on Stack Overflow
See other posts from Stack Overflow
or by Rishi Verma
Published on 2012-12-10T10:59:50Z
Indexed on
2012/12/10
11:03 UTC
Read the original article
Hit count: 230
I am using wget to mirror website using this code $ wget \ --recursive \ --no-clobber \ --page-requisites \ --html-extension \ --convert-links \ --restrict-file-names=windows \ --domains website.org \ --no-parent \ www.website.org/tutorials/html/
The next time I run it it starts downloading the same files again, however I want only the changed files to be downloaded next time. I am open to use any other tool or script(preferably PHP,Curl) apart from using wget.
© Stack Overflow or respective owner