#tool #cli #standard-error #cli-color #color

app colerr

colerr will wrap a given process and colorize it's standard error output

1 stable release

Uses old Rust 2015

1.0.0 Jul 6, 2016

#13 in #colour

MPL-2.0 license

9KB
199 lines

colerr

Build Status Gitter Chat
Documentation

Introduction

colerr will wrap a given process and colorize it's standard error output.

colerr is written in rust programming language and utilizes: mio and mioco libraries. You probably don't care, but it's kind of important so I've mentioned it here.

Building

You need rust compiler bundled with cargo. Then cargo build --release should do the job.

Resulting binary will be in ./target/release/colerr. Just copy it to somewhere to your $PATH.

Usage:
    colorout [--] <cmd>...

Internals

colerr works by spawning a IO-handling child process that takes care of colorizing output. The parent process exec-s the requested command with stdin, stdout and stderr routed to a child.

This way colerr can be used as a drop-in replacement, as the colerr-ed PID will be the PID of the wrapped command. All signals etc. will be handled by the wrapped process itself, the only difference being a standard IO being handled by additional child process.

Dependencies

~8.5MB
~164K SLoC