Skip to content

Instantly share code, notes, and snippets.

@jefftriplett
Created January 25, 2012 18:51
Show Gist options
  • Save jefftriplett/1677882 to your computer and use it in GitHub Desktop.
Save jefftriplett/1677882 to your computer and use it in GitHub Desktop.
unzip all *.zip files in a folder and extract them into a folder of the same name
for f in `ls *.zip | cut -f1 -d '.'`; do unzip -o $f.zip -d $f/; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment