Skip to content

Instantly share code, notes, and snippets.

@bgadrian
Created May 19, 2017 21:04
Show Gist options
  • Save bgadrian/eaa4173ec3ba94161e7798886e038643 to your computer and use it in GitHub Desktop.
Save bgadrian/eaa4173ec3ba94161e7798886e038643 to your computer and use it in GitHub Desktop.
Copy/rebuild a folder structure
#go to source
find . -type d -print0 > dirs.txt
#go to destination
xargs -0 mkdir -p < dirs.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment