Re: include/exclude - how to transfer /etc and /home/users from /?

2005-06-28 Thread Wayne Davison
On Mon, Jun 27, 2005 at 10:57:47PM +0200, Tomasz Chmielewski wrote: I just spent another hour reading the manual and trying to figure it out, but I can't make it. Did you also read the email I pointed you at? Using the --files-from option that it recommended would have been the easiest

include/exclude - how to transfer /etc and /home/users from /?

2005-06-27 Thread Tomasz Chmielewski
I'm trying to copy recursively only /etc, /home/samba/profiles and /home/samba/shared. To do so, I use this rsync command: rsync --progress -v -u -a -z --stats \ --include=/etc \ --include=/home/samba/profiles \ --include=/home/samba/shared \ --exclude=/* \ --numeric-ids --delete-after -e ssh

Re: include/exclude - how to transfer /etc and /home/users from /?

2005-06-27 Thread Wayne Davison
On Mon, Jun 27, 2005 at 04:05:47PM +0200, Tomasz Chmielewski wrote: I'm trying to copy recursively only /etc, /home/samba/profiles and /home/samba/shared. The manpage explains how you need to include all directories on the way down to the file/dir in the recursive descent. Or just use

Re: include/exclude - how to transfer /etc and /home/users from /?

2005-06-27 Thread Tomasz Chmielewski
Wayne Davison schrieb: On Mon, Jun 27, 2005 at 04:05:47PM +0200, Tomasz Chmielewski wrote: I'm trying to copy recursively only /etc, /home/samba/profiles and /home/samba/shared. The manpage explains how you need to include all directories on the way down to the file/dir in the recursive