How do I copy a directory tree but not the files in Linux?
Solution 1:
Just found this:
rsync -a -f"+ */" -f"- *" source/ destination/
http://psung.blogspot.com/2008/05/copying-directory-trees-with-rsync.html
Solution 2:
find some/dir -type d -print0 | rsync --files-from=/dev/stdin -0 ...