有几种方法可以实现

1) 使用rsync --exclude

cd /usr

rsync -avP --exclude=dirc/  tmp  /home/xx/

注意 dirc/ 后面的 / 一定要,指名是目录,如果不加的话 dirc文件也会被排除

如果想排除多个目录或文件的话 使用

rsync -avP  --exclude-from=/usr/exclude.list   php   /bak

[root@localhost php]# rsync -avP --exclude-from=/root/exclude.list php  /bak

exclude.list 必须是绝对路径,里面保存了各种要排除的文件或目录,以换行隔开