执行ls时如何使文件具有不同的颜色?


9

当我执行命令

ls

它显示文件和文件夹。文件夹以浅蓝色键入。我想要粉色的xml文件类型。

怎么做?

Answers:


15

您可以编辑~/.dircolors,如果不存在,可以使用以下方法创建:

dircolors -p > ~/.dir_colors

如此处的示例所示,您可以在.bashrc中包含它:

eval `dircolors ~/.dir_colors`
alias ls="ls --color=auto"

1

一个不需要在/home/yourusername/.bashrc文件中添加任何内容的文件,因为它已经包含了必要的条目

只需搜索--color并取消注释即可,使它们处于活动状态!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.