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

https://github.com/alexrsagen/go-zlib-tool

Tool for compressing and extracting raw zlib compressed files.
https://github.com/alexrsagen/go-zlib-tool

compress decompress extract go golang tool zlib

Last synced: 4 days ago
JSON representation

Tool for compressing and extracting raw zlib compressed files.

Awesome Lists containing this project

README

          

# go-zlib-tool
Tool for compressing and extracting raw zlib compressed files.

Uses [compress/zlib](https://pkg.go.dev/compress/zlib) internally.

Should support any file starting with the following zlib magic headers:
- `78 01` - No Compression/low
- `78 9C` - Default Compression
- `78 DA` - Best Compression

Can only extract a single compressed file.

## Usage

```
Usage of go-zlib-tool:
-c Compress the input
-x Extract the input
-i string
Input path
-o string
Output path
```