NickTheGreek 160 Report post Posted July 22, 2017 find -type d -links 2 -exec mkdir -p "/path/to/backup/{}" \; https://askubuntu.com/questions/365877/copy-only-folders-not-files Quote Share this post Link to post Share on other sites
NickTheGreek 160 Report post Posted September 10, 2017 Copy folder structure (sans files) from one location to another cd /path/to/directories && find . -type d -exec mkdir -p -- /path/to/backup/{} \; https://stackoverflow.com/questions/4073969/copy-folder-structure-sans-files-from-one-location-to-another Quote Share this post Link to post Share on other sites