Skip to content

A small ZIP file extraction utility written in Rust

License

Notifications You must be signed in to change notification settings

malj/zip-extractor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZIP Extractor

A small ZIP file extraction utility written in Rust. The crate exposes both a library API and a CLI program.

Build

To build the executable use Cargo:

cargo build --release

The executable output path is /target/release/zip-extractor

Usage

Executing the CLI program with the help flag will print instructions how to use it:

zip-extractor --help

For example to extract file my_file.txt from my_archive.zip and save its contents to my_extracted_file.txt:

zip-extractor -a my_archive.zip -f my_file.txt > my_extracted_file.txt

Test

Run the test suite with Cargo:

cargo test

License

MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)

About

A small ZIP file extraction utility written in Rust

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages