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

0 0 votes
Article Rating
1 Comment
Inline Feedbacks
View all comments
Programming and Interactive Multimedia Research Gr

Do I have to type a code in the terminal?