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

posted @ 2021-05-03 08:58  lvusyy  阅读(2707)  评论(0编辑  收藏  举报