测试 Linux shell 脚本中的颜色支持

发布于 2024-09-20 00:52:44 字数 161 浏览 7 评论 0原文

这是我第二次想做这件事,但我的谷歌搜索再次失败了。

在运行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的故事 2024-09-27 00:52:44

您可以使用输入颜色

对于我的带有 TERM=xterm-256colors 的终端,输出是 [drumroll] 256!以下是其他一些示例:

$ TERM=vt100 tput colors
-1
$ TERM=vt220 tput colors
-1
$ TERM=linux tput colors
8
$ TERM=cons25 tput colors
8
$ TERM=linux tput colors
8
$ TERM=rxvt-unicode tput colors
88

或者,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:

$ TERM=vt100 tput colors
-1
$ TERM=vt220 tput colors
-1
$ TERM=linux tput colors
8
$ TERM=cons25 tput colors
8
$ TERM=linux tput colors
8
$ TERM=rxvt-unicode tput colors
88

Alternatively tput -Tvt100 colors will also allow you to specify the terminal type you're interested in.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文