How do I exclude more than one directory with rsync?
Updated -
To exclude a directory with rsync, use -av and -e:
# rsync -av -e --exclude='/path/' ip:/path/to/destination
To exclude mutiple directories with rsync, use -av and -e again:
# rsync -av -e --exclude='/path/to/file' --exclude='/path2/*' ip:/path/to/destination
Subscriber exclusive content
A Red Hat subscription provides unlimited access to our knowledgebase, tools, and much more.