linux – 使用sed为标签添加背景颜色?

前端之家收集整理的这篇文章主要介绍了linux – 使用sed为标签添加背景颜色?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用sed来更改选项卡(或任何其他文本)的背景颜色,以便,例如,我可以运行如下所示的内容
somefunction | sed -e 's/(some pattern)/(set bg color)\1(unset bg color)/g'

解决方法

是:
#!/bin/bash

norm_bg=$(tput sgr0)
red_bg=$(tput setab 1)

echo -e "foo\tbar\tbaz" | sed "s/\t/$red_bg    $norm_bg/g"

查看其他链接Color Codes(非常底部)

原文链接:https://www.f2er.com/linux/393869.html

猜你在找的Linux相关文章