其他分享
首页 > 其他分享> > rsync 命令

rsync 命令

作者:互联网

同步只增加的文件,已有的文件不同步

rsync -torvg --ignore-existing --progress  test  root@192.168.15.198:/root/

"--ignore-existing"是更新目标端不存在的文件。

 

使用"--existing"选项使得只更新目标端已存在的文件。

rsync -torvg --existing --progress  test  root@192.168.15.198:/root/

 

全部同步过去

rsync -torvg  --progress  test  root@192.168.15.198:/root/

 

标签:rsync,torvg,--,192.168,existing,命令,root
来源: https://www.cnblogs.com/fengjian2016/p/15351386.html