Unzip files in folders automatically [mac os x]
terminal, unzip
Solution
`find ./ -name \*.zip -exec unzip {} \;` maybe?
Problem
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?