如何确定 bash ls 颜色的含义?
当您在 bash shell 中执行 ls
时,有时会用颜色来指示不同的资源类型,您可以使用 --color
参数启用/控制它。
但手册页和 Google 都没有提供以下问题的答案:
默认情况下这些颜色表示什么,以及如何显示当前系统使用的内容?
更新:< /em>
感谢大家到目前为止的回答,但是为了更容易地选出获胜者,任何人都可以更进一步并提供一种方法来以它们适用的颜色输出描述。
嗯...我的示例在发布时不起作用(仅在预览时),所以如果您预览此代码,它会显示我的意思...
<ul style="list-style:none; background:black; margin:0;padding:0.5em; width:10em">
<li style="color:blue">directory</li>
<li style="color:aqua">symbolic link</li>
<li style="color:#A00000;">*.tar files</li>
<li style="color:white">...</li>
</ul>
谢谢。
When you perform ls
in a bash shell, sometimes there are colours to indicate different resource types, and you can enable/control this with the --color
argument.
But neither the man page nor Google is providing an answer to the question:
What do these colours indicate by default, and how do I display what the current system uses?
UPDATE:
Thanks everyone for answers so far, however to make it easier to pick a winner, can anyone go a step further and provide a method to output descriptions in the colours they apply to.
Hmmm... my example doesn't work when posted (only when previewed), so if you preview this code it'll show what I mean...
<ul style="list-style:none; background:black; margin:0;padding:0.5em; width:10em">
<li style="color:blue">directory</li>
<li style="color:aqua">symbolic link</li>
<li style="color:#A00000;">*.tar files</li>
<li style="color:white">...</li>
</ul>
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
颜色由
$LS_COLORS
环境变量定义。 根据您的发行版,它会在 shell 启动时使用~/.dircolors
或/etc/DIR_COLORS
自动生成。编辑:
要列出颜色含义,请使用以下脚本:
The colors are defined by the
$LS_COLORS
environment variable. Depending on your distro, it is generated automatically when the shell starts, using~/.dircolors
or/etc/DIR_COLORS
.Edit:
To list color meanings, use this script:
运行命令 dircolors -p 将打印所有默认颜色设置。
请参阅http://linux.about.com/library/cmd/blcmdl1_dircolors.htm。
Running the command
dircolors -p
will print all default colour settings.See http://linux.about.com/library/cmd/blcmdl1_dircolors.htm.
您应该能够在 /etc/DIR_COLORS 中看到映射列表。 您可以通过在主目录中创建 .dir_colors 来覆盖它。
You should be able to see the list of mappings in /etc/DIR_COLORS. You can override that by creating .dir_colors in your home directory.
尝试“man 5 dir_colors”以查看它在您的系统上的设置方式。 我的没有 /etc/DIR_COLORS 所以它必须设置在其他地方。
Try "man 5 dir_colors" to see how it's set on your system. Mine doesn't have /etc/DIR_COLORS so it must be set somewhere else.
Google LS_COLORS 获取一些有用的链接。
编辑:要列出颜色,这个简单的 bash 脚本可能会给出一个想法:
Google for LS_COLORS for some useful links.
Edit: To list the colors, this simple bash script may give an idea: