Rsync only sync destination folder existing files

rsync

Src folder: A.txt B.txt C.txt
Dst folder: B.txt

Is there any way to let rsync only sync files in destination folder? So if A and B in source folder updated, rsync only copy B to destination folder?

Best Answer

rsync --existing will do the trick.