rsync 命令
同步只增加的文件,已有的文件不同步
rsync -torpvg --ignore-existing --progress test root@192.168.15.198:/root/
"--ignore-existing"是更新目标端不存在的文件。
使用"--existing"选项使得只更新目标端已存在的文件。
rsync -torvg --existing --progress test root@192.168.15.198:/root/
md5不相同的文件同步覆盖, 目的目录已有的不覆盖
rsync -torvg --progress test root@192.168.15.198:/root/
从服务器上下载文件
rsync -avz --password-file=/home/rsync.pass nfsdata@192.168.15.198::backup /home/
从本地上传到服务器上去
rsync -avz --password-file=/home/rsync.passs /home scihoo@192.168.15.198::nfsdata
rsync限速
rsync -avP -e 'ssh -p 22' --bwlimit=90000 root@172.17.164.54:/export/2021/*.json ./