ctee

Github Actions Crates.io Crate Downloads MIT License

Rust implementation of Unix's tee with stripping of ANSI colors.

Installation

Use the crate published on crates.io:

shell cargo install --locked ctee

OR manually clone and install the latest version:

shell git clone https://github.com/Lipen/ctee cd ctee cargo install --path .

Usage

``` $ ctee --help

Read from STDIN and write to STDOUT (unchanged) and FILES (without ANSI-colors)

USAGE: ctee [OPTIONS] [FILES]...

ARGS: ... Output files

OPTIONS: -a, --append Append to the given files instead of overwriting --bs Buffer size [default: 8192] -h, --help Print help information --strip-ansi Strip ANSI color codes when writing to files [default: true] -V, --version Print version information

EXAMPLES: | ctee my.log ```

Credits

@shepmaster for the code of Rust implementation of tee.