Skip to content

Instantly share code, notes, and snippets.

@bjjay
Created May 10, 2012 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bjjay/2652089 to your computer and use it in GitHub Desktop.
Save bjjay/2652089 to your computer and use it in GitHub Desktop.
unzip files
#!/bin/bash
for item in `ls -d */*.zip`
do
sub=`echo $item | cut -d / -f 1`
unzip $sub/*.zip -d $sub
unrar e $sub/*.rar $sub
rm -f $sub/*.zip $sub/*.rar
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment