Skip to content

Instantly share code, notes, and snippets.

@pgwillia
Created July 26, 2013 17:06
Show Gist options
  • Save pgwillia/6090517 to your computer and use it in GitHub Desktop.
Save pgwillia/6090517 to your computer and use it in GitHub Desktop.
To archive directories 4 deep
find . -mindepth 4 -maxdepth 4 -type d -exec tar cvzf $(basename {}).tar.gz -C {} . \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment