Re: Problems with exclude files in rsync 2.6.4

2006-05-05 Thread Wayne Davison
On Wed, May 03, 2006 at 11:41:05AM +0200, Judith Flo wrote: > ^/proc/* > /prova1/ > /var* > *.o > *.swp > ^/dev* Note that the names which start with '^' probably won't match anything because those exclude patterns only match below a directory named '^'. (A leading '/' is all the anchor you need f

Re: Problems with --exclude

2004-01-27 Thread tim
Here's another example. An exclude file containing + /mnt/ - /mnt/** will include the directory /mnt but exclude its contents. rgds, tim. Brian Camp wrote: I'm trying to get rsync to exclude the directory "/home/www/users/ftp/pub/" from being copied in the command line below and have not been

Re: Problems with --exclude

2004-01-26 Thread Wayne Davison
On Mon, Jan 26, 2004 at 09:21:39PM -0600, Brian Camp wrote: > I'm trying to get rsync to exclude the directory > "/home/www/users/ftp/pub/" from being copied in the command line below > and have not been successful. The important part of the man page on this is that exclusions are relative to the

Re: Problems with --exclude

2004-01-26 Thread jw schultz
On Mon, Jan 26, 2004 at 09:21:39PM -0600, Brian Camp wrote: > I'm trying to get rsync to exclude the directory > "/home/www/users/ftp/pub/" from being copied in the command line below > and have not been successful. I've tried many combinations, such as > dropping the /'s and adding *'s, witho