您的位置:首页 > 运维架构 > Shell

shell中字体变色

2015-11-19 13:55 656 查看
在linux中给字体使用数字代码变色

字体颜色代码:重置0 ,黑色30,红色31,绿色32,黄色33,蓝色34,洋红35,青色36,浅灰37

效果代码:1m加粗 2m加下划线 5m闪动效果 7m加背景色

应用示例:

echo -e "\e[31m the is test \e[0m" 或 echo -e "\033[33m the is test \033[0m"
the is test

echo -e "\e[1;31m the is test \e[0m" 或 echo -e "\033[33;1m the is test \033[0m" (加粗模式)
the is test
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: