Skip to content

Instantly share code, notes, and snippets.

@siberex
Created August 25, 2016 21:57
Show Gist options
  • Save siberex/861b9326ddf56070a62faa4843eccb50 to your computer and use it in GitHub Desktop.
Save siberex/861b9326ddf56070a62faa4843eccb50 to your computer and use it in GitHub Desktop.
Clone tree structure
# http://ilyabirman.ru/meanwhile/all/clone-directory-structure/
SRC='/Volumes/My Passport/Porno/'
DEST='/tmp'
find "$SRC" -type f | while read f; do mkdir -p "$(dirname "$DEST$f")" && touch "$DEST$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment