/root/.ssh/key
密钥文件位置/home/source-path/
源文件路径/home/to-dir/
目的地路径- username用户名
- hostname主机地址
指定密钥
rsync -Pav -e "ssh -i /root/.ssh/key" username@hostname:/home/source-path/ /home/to-dir/
指定密钥和端口
rsync -Pav -e "ssh -i /root/data/key -p 10023" username@hostname:/home/source-path/ /home/to-dir/