Skip to content

Instantly share code, notes, and snippets.

@gorillamoe
Created December 23, 2013 12:39
Show Gist options
  • Save gorillamoe/8096436 to your computer and use it in GitHub Desktop.
Save gorillamoe/8096436 to your computer and use it in GitHub Desktop.
Unzip all files in current directory to a directory based on their zipped filename.
ls *.zip|awk -F'.zip' '{print "unzip "$0" -d "$1}'|sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment