Skip to content

Decompressing a ZIP file

Ki Rill edited this page Apr 14, 2021 · 5 revisions

With Zippo you can unzip the entire zip file or extract only the files you need.

Decompressing the entire ZIP file

zippo unzip path/to/myzipfile.zip

Read more about Zippo commands and the default configurations here.

Extracting the specified file(s) only

zippo unzip path/to/myzipfile.zip --file=file1.pdf,mymovie.mp4

In this case file1.pdf and mymovie.mp4 will be extracted from the ZIP file.

Excluding some files from decompression

zippo unzip path/to/myzipfile.zip --ignore=file1.pdf,mymovie.mp4

In this case, everything will be extracted from the ZIP file, except for file1.pdf and mymovie.mp4.

Clone this wiki locally