Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dylanmtaylor/2755fc5bd5b5f3dc80953479b80fd98d to your computer and use it in GitHub Desktop.
Save dylanmtaylor/2755fc5bd5b5f3dc80953479b80fd98d to your computer and use it in GitHub Desktop.
Unzip folder of zip files to matching directories
find . -name '*.zip' -exec mkdir -p "Unzipped/{}" \;
find . -name '*.zip' -exec unzip -o -d Unzipped/{}/ {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment