Re: Logging only files transferred not directories

2006-10-19 Thread Wayne Davison
On Fri, Oct 20, 2006 at 08:59:04AM +1000, Christian Hack wrote: Is there any way to keep the verbosity high enough to print the transferred files only? You can just filter the output, via some equivalent of this: rsync ...CMD... | grep -v '/$' That discards every line that ends in a slash

Re: Logging only files transferred not directories

2006-10-19 Thread Matt McCutchen
On 10/19/06, Wayne Davison [EMAIL PROTECTED] wrote: rsync ...CMD... | grep -v '/$' OK, that accomplishes what Christian literally asked for, but it might be useful to show the directories that actually changed since the previous backup. Matt -- To unsubscribe or change options:

RE: Logging only files transferred not directories

2006-10-19 Thread Christian Hack
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt McCutchen Sent: Friday, 20 October 2006 10:45 AM To: Wayne Davison Cc: Christian Hack; rsync@lists.samba.org Subject: Re: Logging only files transferred not directories On 10/19/06, Wayne