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
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
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
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