I want rsync to:
- Copy all files from source to destination
- If a file does not exist anymore in the source, delete it from the destination, EXCEPT for some specific files
And I  need to list the exceptions in a separate file, like I can do with the --exclude-from option.
Is this possible?

