A command line utility for in-memory listing and unpacking files from nested zip files.
- Listing files from a zip file in a zip file
$ unzipr -l test-zip-of-zip.zip test.zip
test/
test/test.txt
- Unpacking files from a nested zip file to standard out
$ unzipr -p test-zip-of-zip.zip test.zip test/test.txt
Hello World!
- Unpacking files from a nested zip file to current working directory
$ unzipr test-zip-of-zip.zip test.zip
- Unpacking files from a nested zip file to specific directory
$ unzipr -d /tmp/target test-zip-of-zip.zip test.zip
brew tap taivokasper/utilities
brew install unzipr
- Download the latest release from here
- Add the binary to path
- Build from source :(
cargo build --release
cargo test
cargo build
./integration-tests.sh
Issues and/or pull requests are welcome!