Delete files from zip while unzipping

Hey there, I have a limited 100GB storage and I want to extract an 80 GB zip file present in the disk. Is there a way I can delete files from the zip one on one the moment they are extracted?

Hi @Arc , possibly this provides an answer. The page provides a solution as well, the question got answered with executing the following command:

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

Happy hunting!

5 Likes