Getting rsync to move file from source to destination ?
- by fabien-barbier
Is rsync is a good choice for my project ?
I have to :
- copy files from source to destination folder via SSH,
- be sure all files are copied,
- delete source files after copy.
- if I have conflict name, I have to rename files.
It looks like I can use option : --remove-source-files (to delete source files)
But how rsync manage conflict, can I…