I've so far figured out how to use find to recursively unzip all the files:

find . -depth -name `*.zip` -exec /usr/bin/unzip -n {} \; 

But, I can't figure out how to remove the zip files one at a time after the extraction. Adding rm *.zip in an -a -exec ends up deleting most of the zip files in each directory before they are extracted. Piping through a script containing the rm command (with -i enabled for testing) causes find to not find any *.zips (or at least that's what it complains). There is, of course, whitespace in many of the filenames but at this point syntaxing in a sed command to add _'s is a bit beyond me. Thank for your help!

link|improve this question
What do you mean recursively, zip in zip? For complex tasks, personally I'd write a helper script (say unzip-and-rm.sh) and -exec that script. – Xie Jilei Apr 8 '11 at 4:26
I apologize if I wasn't clear enough. The directory tree goes at least six or seven levels down with the zip files being at the deepest levels. Each zip file contains two other files, and I wish to keep the other files untouched but then remove the zip file. My original try here was just to plug the unzip-and-rm into a script and -exec it, but it fails to find any zip files, and I suspect it's due to to the spaces in the filenames. – Ben Apr 8 '11 at 4:33
I don't know why it fails to find any zip files, I can't believe it, could you paste the command line? – Xie Jilei Apr 8 '11 at 4:47
feedback

2 Answers

up vote 0 down vote accepted

have you tried:

find . -depth -name `*.zip` -exec /usr/bin/unzip -n {} \; -exec rm {} \;

or

find . -depth -name `*.zip` -exec /usr/bin/unzip -n {} \; -delete

or running a second find after the unzip one

find . -depth -name `*.zip` -exec rm {} \;   
link|improve this answer
I get a find: paths must precede expression: /usr/bin/unzip. – Ben Apr 8 '11 at 4:45
please try the other options – ggiroux Apr 8 '11 at 4:48
Ah! The second option works perfectly. -delete, how I never knew ye! One of the main criteria that of course I forgot to mention is that the unzipping and deleting should happen back to back, as the drive is not large enough to unzip everything and then go back to delete. Thank you so much! – Ben Apr 8 '11 at 4:51
Warning: the third option does NOT work when in the zip files are other zip files. – flolo Apr 8 '11 at 5:03
feedback

thx for the 2nd command with -delete! helped me a lot.. just 2 (maybe helpful) remarks from my side:

-had to use '.zip' instead of `.zip` on my debian system

-use -execdir instead of -exec > this will extract each zip file within its current folder, otherwise you end up with all extracted content in the dir you invoked the find cmd.

find . -depth -name '*.zip' -execdir /usr/bin/unzip -n {} \; -delete

THX & Regards, Nord

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.