rsync – 仅复制整个文件

前端之家收集整理的这篇文章主要介绍了rsync – 仅复制整个文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法将目录从一个文件系统复制到另一个文件系统,但是如果我们的目标文件系统上的磁盘空间不足,则删除部分文件
搜索了cp和rsync手册,但没有找到任何东西;我可以在 shell脚本中执行此操作但是如果可能的话就想避免它.
目前我这样做:
cp -r /source /dest

要么

rsync -avr /source /dest

解决方法

如果查看rsync手册,可以阅读:
--partial
     By default,rsync will delete any partially transferred file if the transfer is
     interrupted. In some circumstances it is more desirable to keep partially 
     transferred files. Using the --partial option tells rsync to keep the partial file
     which should make a subsequent transfer of the rest of the file much faster.

这意味着您无需担心部分转移.

您可以确保–partial-dir = DIR选项.然后,如果要删除部分传输的文件,则可以删除此目录下的所有文件.

原文链接:https://www.f2er.com/linux/396145.html

猜你在找的Linux相关文章