测试 Linux shell 脚本中的颜色支持
这是我第二次想做这件事,但我的谷歌搜索再次失败了。
在运行 shell 脚本(在我的例子中是 bash 脚本)的过程中,是否有一个程序/脚本可以测试当前 shell 是否支持颜色?
或者有没有办法获取终端类型并轻松确定它是否支持颜色?
无论哪种方式都会有帮助。
This is the second time I've wanted to do this and again my google-fu has failed me.
When in the course of running a shell script (in my case a bash script) is there a program/script that tests whether the current shell supports color?
Alternatively is there a way to take the terminal type and easily determine if it supports color?
Either way it would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
输入颜色
。对于我的带有
TERM=xterm-256colors
的终端,输出是 [drumroll] 256!以下是其他一些示例:或者,
tput -Tvt100 color
还允许您指定您感兴趣的终端类型。You can use
tput colors
.For my terminal with
TERM=xterm-256colors
the output is [drumroll] 256! Here are some other examples:Alternatively
tput -Tvt100 colors
will also allow you to specify the terminal type you're interested in.