From the manpage of rsync
--remove-source-files
This tells rsync to remove from the sending side the files (meaning non-directories) that are a part of the transfer and have been successfully duplicated on the receiving side.
Does it mean files on the sending side that are either part of the transfer or duplicated on the receiving side?
Can I also remove directories on the sending side?
Note that you should only use this option on source files that are quiescent.
- What does "source files that are quiescent" mean?
If you are using this to move files that show up in a particular directory over to another host, make sure that the finished files get renamed into the source directory, not directly written into it, so that rsync can't possibly transfer a file that is not yet fully written.
- What does this mean?
If you can't first write the files into a different directory, you should use a naming idiom that lets rsync avoid transferring files that are not yet finished (e.g. name the file "foo.new" when it is written, rename it to "foo" when it is done, and then use the option --exclude='*.new' for the rsync transfer).
- What does this mean?
Starting with 3.1.0, rsync will skip the sender-side removal (and output an error) if the file's size or modify time has not stayed unchanged.
- What does this mean?
Thanks.
rm -rf <source_directory>
is NOT SAFE. That will delete everything, including files that weren't successfully synced. You need something likefind <source_directory> -type -d -empty -delete
instead. – OrangeDog Oct 01 '18 at 10:21--remove-source-files
, does rsync perform a checksum verification of the copied file before removing it from the source? – a06e Nov 14 '19 at 10:53