Hi there,

We have a directory structure such as:

"/home/foobar/domains/example.com/public"
"/home/cake/domains/mydomain.org/public"

I need to use a single rsync command to sync "/home/*/domains/*" to another
directory, but I'm really struggling on how to do this.

rsync -arv '/home/*/domains/*' ~/
rsync: change_dir "/home/*/domains" failed: No such file or directory (2)

I've been looking at doing it another way, using something mad such as:

rsync -arv --exclude='*' --include='*/domains/*' home ~/

But this still copies every file under /home

Is this possible to do?

Regards
Alex Cartwright
-- 
Please use reply-all for most replies to avoid omitting the mailing list.
To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Reply via email to