Anyone know how I can do this w/o rsync? We have a large mirror we made with wget, but I don''t see how to prevent wget from fetching anything it has already? Thanks! jlc
On Thu, Feb 26, 2009 at 7:25 AM, Joseph L. Casale <JCasale at activenetwerx.com> wrote:> Anyone know how I can do this w/o rsync? We have a large > mirror we made with wget, but I don''t see how to prevent > wget from fetching anything it has already? >wget -N compares local/remote timestamps before downloading. Only downloads newer files. -- Jeff