Write colored strings with ANSI escape code into a termcolor
terminal.
This package provides a single function, [write_ansi
], which parses ANSI
escape codes in the provided byte string and transforms them into the
corresponding termcolor
commands. The colors will be supported even on a
Windows console.
The main purpose of this package is to forward colored output from a child process.
extern crate termcolor;
extern crate fwdansi;
use *;
use io;
use Command;
use write_ansi;