Skip to content

Zippo commands and default configurations

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

Zippo has 4 commands and 5 options in total. A command must be specified. If an option, on the other hand, is not provided or skipped by the user, then the default value is used.

USAGE: zippo [command] [options]

COMMANDS:
        zip             compresses a file(s)
        unzip           decompresses a zip file
        list            lists zip file contents
        help            display available options and exit

OPTIONS:
        -v, --verbose   verbose output
        -f, --files     (un)zip selected files, e.g.: -f=file1,file2,...,fileX
        -n, --name      zipfile name, e.g.: -n=file.zip
        -p, --path      path to files, which should be (de)compressed, e.g.: -p=someFolder/anotherFolder
        -i, --ignore    exclude files from (de)compression, e.g.: -i=file.jpg,...,mymovie.mp4

Defaults:

--path=current_working_directory
--files=none
--name=archive.zip
--ignore=none

If you need verbose output to see the progress, append -v or --verbose at the end.

Clone this wiki locally