Created
April 30, 2016 02:41
-
-
Save dylanmtaylor/2755fc5bd5b5f3dc80953479b80fd98d to your computer and use it in GitHub Desktop.
Unzip folder of zip files to matching directories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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