有没有办法在 MS 命令提示符和/或 Linux 终端上显示彩色文本?
为了便于阅读,我想知道是否有一种简单的方法可以对输出到控制台的文本部分进行着色。欢迎 Linux 终端和 MS 命令提示符建议!
For the sake of readability, I'd like to know if there is a simple way to color parts of the text you output to a console. Both Linux Terminal and MS Command Prompt suggestions are welcome!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在类 Unix 操作系统中使用 ANSI 转义码。以下是关于操纵颜色的理论: http://tldr.es/1md
在 Windows 中,有 控制台函数 API。
You can use ANSI escape codes in Unix like OS. Here's the theory about manipulating colors: http://tldr.es/1md
In Windows, there's console functions API.
是的,您可以使用颜色代码来使用序列:[{属性};{前景};{背景}m。
这解释得更准确。
编辑:有关颜色列表及其外观的输出,请访问此处。
Yes, you can use the sequence: [{attribute};{foreground};{background}m using the color codes.
This explains it more precisely.
EDIT: For the list of the colors and an output of how they look go here.