Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cyberdelia/lzo

lzo implements reading and writing of lzop format compressed files
https://github.com/cyberdelia/lzo

go lzo

Last synced: 5 days ago
JSON representation

lzo implements reading and writing of lzop format compressed files

Awesome Lists containing this project

README

        

# lzo

lzo implements reading and writing of lzo format compressed files for Go, following lzop format.
It uses the lzo C library underneath.

## Installation

Download and install :

```
$ go get github.com/cyberdelia/lzo
```

Add it to your code :

```go
import "github.com/cyberdelia/lzo"
```

## Command line tool

Download and install:

```console
$ go get github.com/cyberdelia/lzo/cmd/lzop
```

Compress and decompress:

```console
$ lzop testdata/pg135.txt
$ lzop -d testdata/pg135.txt.lzo
```