linux命令
rsync -P --rsh=ssh homefile.zip root@30.19.103.99:/home/remote.zip
这个命令的含义:
-P 断点续传
-rsh ssh 远程shell
homefile.zip 本地文件
root@30.19.103.99:/home/remote.zip 远程主机上的目的文件 root是远程用户名
scp断点续传
原文:http://www.cnblogs.com/pa200318/p/7417709.html