I'm trying to backup multiple directories with rsync, using --exclude option.
I know that --exclude paths need to be relative to the source path, but what happens when there are multiple sources?
Let's say I want to backup /home/user/source_a and /home/user/source_b, but want to exclude /home/user/source_a/something.
When I write --exclude=/something will both /home/user/source_a/something and /home/user/source_b/something be excluded (if there's /home/user/source_b/something)?