RSYNC 同步完成后删除源文件

2021/5/3 10:26:42

本文主要是介绍RSYNC 同步完成后删除源文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

RSYNC 同步完成后删除源文件

Delete source after successful transfer using rsync
The syntax is:

rsync --remove-source-files -options /path/to/src/ /path/to/dest rsync --remove-source-files -options /path/to/src/ computerB:/path/to/dest rsync --remove-source-files -av /path/to/src/*.avi computerB:/path/to/dest
You can always perform a trial run with no changes made using –dry-run option:

rsync –dry-run –remove-source-files -azv /path/to/Download/*.avi laptop:~/Download
If you like output run the final command without –dry-run option:

rsync –remove-source-files -azv /path/to/Download/*.avi laptop:~/Download



这篇关于RSYNC 同步完成后删除源文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程