对比本地单机备份目录:
rsync --dry-run -rcnC --out-format="%n" A1.1/ A1.0/ |grep -v "/$"
远程对比:A1.0 是本地目录,-p参数是ssh端口,如果没修改,就不用'-e ssh -p 2222' 这个参数,然后就跟上服务器ip:/对比目录
rsync --dry-run -rcnC --out-format="%n" A1.0/ '-e ssh -p 2222' root@master:/hx/
对比远程服务器并增加没有的文件夹,以及文件
rsync --dry-run -rcnC --out-format="%n" A1.0 '-e ssh ' root@master:/hx/ | xargs -i rsync -r --progress {} root@master:/hx/