Unzip all Files in Folder MAC OSX

To automatically Prozess a lot of Zip Files in a Folder this Terminal command is quite useful

Open Terminal

CD to the Directory you need to prozess

# Change Directory you need to prozess
cd /Users/meta/Downloads/myfolderzips

# extract all Zip on request to overwrite .txt conform aith  all 
unzip \*.zip

# if we need to remove cleanup the extracted zips
rm -f *.zip

Find all ZIP in a Folder and Subfolder

find ./ -name ‘*zip’

Un Zip all files in subfolder of the Folder

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

 

Same prozess can be done with bz2 or rar files