Skip to content

baba-ali-graph/zippa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!

About

A CLI zipping tool created with Rust

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages