Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dagit/ztee

Implementation of tee that produces compressed file output.
https://github.com/dagit/ztee

cli tool unix

Last synced: 12 days ago
JSON representation

Implementation of tee that produces compressed file output.

Awesome Lists containing this project

README

        

# ztee

Works similarly to `tee` but the file output is `gzip` compressed.

This is a very simple program and probably lacks features of a real `tee`
implementation, but should still be useful in many cases.

## Installation

1. From crates.io:

```
cargo install ztee
```

## Usage

```
$ ztee --help
ztee is like tee but with gzipped file output 0.1.0
Jason Dagit
Duplicates stdin to stdout and also a compressed file.

USAGE:
ztee

FLAGS:
-h, --help Prints help information
-V, --version Prints version information

ARGS:
Write compressed stream to FILE
```