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

相关文章:

  • 2021-06-15
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2021-09-23
  • 2021-09-09
  • 2021-12-31
  • 2022-03-01
猜你喜欢
  • 2022-02-02
  • 2021-11-22
  • 2021-07-04
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案