Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Extract multiple zip files into their own folders

Found this gem of a script at: http://askubuntu.com/questions/518370/extract-several-zip-files-each-in-a-new-folder-with-the-same-name-via-ubuntu-t

find -name '*.zip' -exec sh -c 'unzip -d "${1%.*}" "$1"' _ {} \;

For this to work you need to be at the same level on shell as the zips you need to extract.