目录接口
/ opt
| -- build
| | -- bin
| | -- res
| | -- image
| -- bin
| -- conf
我想/opt 下面所有文件(排除 /opt/bin 这个目录) 上传到远程服务器
rsync -avzP --progress --delete -r --exclude='bin/' /opt/ 192.168.0.100:/opt
这样build 文件夹下的bin 目录也会排除掉,如何只排除/opt/bin 呢?