Skip to content

Instantly share code, notes, and snippets.

@dimidd
Created June 9, 2015 11:24
Show Gist options
  • Save dimidd/7ce98d21640949954136 to your computer and use it in GitHub Desktop.
Save dimidd/7ce98d21640949954136 to your computer and use it in GitHub Desktop.
unzip all archives to their dirs
for f in `ls *.zip`; do unzip "$f" -d "${f%.zip}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment