On Sat, Mar 21, 2009 at 02:06:42PM +0100, Christian Hecht
wrote:> Now my question is, when i use rsync with the -c option, is it possible to
> output the filename and the generated hash to any file?
Rsync 3.1.0dev supports the %C escape in log formats, which can output
the sender's checksum anytime a file is transferred (even without -c),
or for any file when -c is used. Example options for controlling the
output format:
--out-format='%C %n%L'
-ii --out-format='%i %C %n%L'
There is also a log-checksum.diff in the patches directory for the 3.0.x
releases.
..wayne..