I'm trying to use rsync to keep to folders in sync. Let's call them SRC and DST. When I delete a file in SRC and I run my rsync command, I want the corresponding file in to be deleted. When I delete a directory in SRC, I want all corresponding files to be deleted in DST but to keep the empty directory structure.
Is it possible ?
Perhaps you could do it, doing first a find in your SRC, and looking for empty directories, putting this directories in an exclude file and then passing this exclude file to rsync. Then it could work.
To find your empty dirs do
Do alter
to exclude from a file.
BUT I didn't test this myself.