Skip to content

Latest commit

 

History

History
59 lines (35 loc) · 1.03 KB

README.md

File metadata and controls

59 lines (35 loc) · 1.03 KB

Zippa

Zippa is a command line utility for zipping folders and files using Rust.

Usage

Zipping Files and Folders

zippa zap -s FOLDER_TO_ZIP -d OUTPUT.zip

The following flags are available:

-s, --source FOLDER
The source folder to zip

-d, --dest FILE
The output zip file

-c, --compression
The compression algorithm to use. Supported values are bzip2 (default), gzip or zip

-o, --override
Override existing output file

If not passed, the compression option defaults to bzip2 and the --override flag is applicable when you want it to overwrite existing output files.

Unzipping Files and Folders

zippa unzap -s FOLDER_TO_ZIP -d OUTPUT.zip

The following flags are available:

-s, --source FOLDER
The source folder to zip

-d, --dest FILE
The output directory destination

Installation

Add this to your Cargo.toml:

[dependencies]
zippa = "*"

And run cargo install --path . to install.

Contributing

Pull requests are welcome!