Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/dagit/ztee
- Owner: dagit
- Created: 2020-05-02T22:16:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-02T22:34:09.000Z (over 4 years ago)
- Last Synced: 2024-12-08T21:44:11.270Z (about 1 month ago)
- Topics: cli, tool, unix
- Language: Rust
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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:
zteeFLAGS:
-h, --help Prints help information
-V, --version Prints version informationARGS:
Write compressed stream to FILE
```