An open API service indexing awesome lists of open source software.

https://github.com/vadimkantorov/busyz

zip-like utility primer with miniz
https://github.com/vadimkantorov/busyz

miniz zip

Last synced: 2 months ago
JSON representation

zip-like utility primer with miniz

Awesome Lists containing this project

README

        

# busyz

A simple `zip`/`unzip`-like utility, supporting recursive directory traversal and excludes (I used it in [busytex](https://github.com/busytex/busyide)).

It uses an excellent single-file [miniz](https://github.com/richgel999/miniz) zlib library by [Richard Geldreich](https://twitter.com/richgel999).

```shell
# build using in-tree miniz 2.1.0
make busy

# update miniz if needed and rebuild
make miniz busyz

# compress the current directory
./busyz zip -r -x miniz.c -x minizip.h ../archive.zip .

# decompress the current directory
./busyz unzip ../archive.zip -d ../archive_
```