有没有办法将目录从一个文件系统复制到另一个文件系统,但是如果我们的目标文件系统上的磁盘空间不足,则删除部分文件?
我搜索了cp和rsync手册,但没有找到任何东西;我可以在 shell脚本中执行此操作但是如果可能的话就想避免它.
目前我这样做:
我搜索了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.
这意味着您无需担心部分转移.