Let's say I have a folder structure that looks like the following
- Home
--Test
---Working
----SubDirectory 1
-----Test1
-----Test2
If I'm performing a copy or rsync command how do I disclude the parent "Working" folder and the all subdirectories e.g. "SubDirectory 1"
My half made attempt rsync -av --include=*. --disclude
Thanks!