I would like to elaborate a bit on Paul's response: On Tue, 2007-11-20 at 18:10 +0100, alex loutrbringa' wrote: > When i launch my rsync command with "-i" option, i see all my binary > files like this : > ----------------------------- > <f..T.... downloads/binaries/binaryv2.cpt.zip > ----------------------------- > I understood well that "T" means mtime are different
The "T" means that the mtimes differ and you still aren't asking rsync to preserve mtimes. You need to pass -t/--times (or -a/--archive , which implies it). > even if mtime seems to be exactly the same > on both servers (assuming that mtime is the time printed by "ls -l" > command). Yes, but use "ls -l --time-style=+%s" to see the times in full precision and rule out timezone issues. > Maybe the "f" letter? Do you know what it means ? That the file is a regular file. Matt -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html