rsync 命令
Posted fengjian1585
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 命令的主要内容,如果未能解决你的问题,请参考以下文章