2018-02-10 7:28 GMT+01:00 Rupert Gallagher <[email protected]>: > The only problem I've encountered is rsync unable to preserve the original > time of files: copied files have the time of the copy.
man rsync
-t, --times preserve modification times
You want
-a, --archive archive mode; equals -rlptgoD (no -H,-A,-X)
Best
Martin

