View Single Post

  #1 (permalink)  
Old 05-07-2008
Matthew Lincoln
 
Posts: n/a
Default How to exclude MULTIPLE directories in a rsync command ?

As I learned from the man page of rsync I can exclude a certain directory (trees)
by using the --exclude option like in

rsync .... --exclude=/proc ....

But how do I exclude multiple directory (trees) at once in such a rsync command?
The following does not work:

rsync .... --exclude=/proc||/var||/dummy ....

Same with "&&" instead of "||"

Matthew
Reply With Quote