Unzip files in folders automatically [mac os x]

d12n picture d12n · Apr 3, 2013 · Viewed 29.6k times · Source

I have a folder on my desktop that has around 2500 folders in it, each folder has multiple files in them that are zipped, I can unzip them by manually clicking on them, is there a way to do this automatically through terminal?

Answer

Jorge Núñez picture Jorge Núñez · Apr 3, 2013

find ./ -name \*.zip -exec unzip {} \; maybe?