On Fri, Sep 10, 2004 at 07:36:57AM -0500, Mark Seamans
wrote:> I am needing to know what files were transferred. However in the log it
> is not showing me.
If no filenames get output with -v, then they were thought to be
up-to-date. See also the --log-format option for a way to tell rsync to
output messages similar to what you get with verbose output, but with
more information and in an easier to parse format than what the verbose
output gives you. For instance:
rsync -a --log-format='%o %l %f' /source/foobar /dest
would output things like this:
send 4138 foobar
..wayne..