#command-output #text #colourize

bin+lib colourizer

轻松实现命令输出的色彩化

5 个版本

0.1.4 2021 年 5 月 28 日
0.1.3 2021 年 5 月 24 日
0.1.2 2021 年 5 月 23 日
0.1.1 2021 年 5 月 20 日
0.1.0 2021 年 5 月 19 日

42#command-output

29 每月下载量
用于 apod

自定义许可证

120KB
153

色彩化

轻松实现命令输出的色彩化

使用方法

色彩化可以作为独立程序直接显示文本,或从之前的命令获取输出,也可以作为其他crate的库使用。

独立

直接

colourizer -b this will be bold!
colourizer -c red this will be red
colourizer --rgb "0;200;255" this will be bright blue

之前

echo this will be bold | colourizer -b
echo this will be red | cowsay | colourizer -c red
ping gnu.org | colourizer --rgb "0;200;255"

ping fortune

示例用法

println!("{}", "this will be red and bold!".fgred().bold());
println!("{}", "this will be a bright blue".rgb("0;200;255"));

依赖项