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.zipbrew tap taivokasper/utilities
brew install unzipr- Download the latest release from here
- Add the binary to path
- Build from source :(
cargo build --releasecargo test
cargo build
./integration-tests.shIssues and/or pull requests are welcome!