Skip to content

Instantly share code, notes, and snippets.

@belo82
Last active August 29, 2015 14:10
Show Gist options
  • Save belo82/770a7faad97deae39f9e to your computer and use it in GitHub Desktop.
Save belo82/770a7faad97deae39f9e to your computer and use it in GitHub Desktop.
Unzips all *.zip files in current directory to separate directory with name of an zip file
ls -1 *.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