Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

budalojedno

macrumors newbie
Original poster
Jan 4, 2009
3
0
As title say's, I'm looking for application that can unzip multiple zip's into the same directory. I've tried Stuffit, Zipeg, Unrarx, The Unarchiver, but can't find that fuction in neither of them.

Greets!
 

iShater

macrumors 604
Aug 13, 2002
7,026
470
Chicagoland
They probably all extract to the original file path. See if any of them has a setting to NOT use original file path.
 

MikhailT

macrumors 601
Nov 12, 2007
4,582
1,325
I was looking for an app too but decided to do it in the terminal.

here's how you do it (this example is to extract all zip files to a directory called test
Code:
unzip -jo \*.zip -d test/
to be more specific, try to add the name of the zip file to the wildcard
so if you have aaa01 aaa02 aaa03,

it would be
Code:
unzip -jo aaa\*.zip -d test/
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.