In comp.security.ssh Matthew Lincoln <(E-Mail Removed)> wrote:
> 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:
Check the man page for --exclude-from=
You just need to set up a simple text file will all the excludes and call
rsync with the --exclude-from= to read the file in.
-bruce
(E-Mail Removed)