Rsync without creating a hidden file at destination

rsync creates a temporary hidden file during the transfer, but the file is renamed when the transfer is complete. I would like rsync files without creating a hidden file.

+6
source share
1 answer

alvits is correct --inplace will fix this for you. I found this when I had problems synchronizing music with my phone (installed on ubuntu using jmtpfs). I would get an error string by renaming temporary files to replace existing files.

+4
source

All Articles