Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在自定义我的 DIR_COLORS (~/.dir_colors) 以在我的终端上为 ls 着色。
我知道如何更改名称以已知扩展名结尾的文件的颜色:
.cpp 0;34
但是我想为具有固定名称的文件设置颜色,例如Makefileand Kconfig,我还想更改以点(例如.config)或其他模式开头的文件的颜色。
Makefile
Kconfig
.config
这可能吗?
不幸的是,没有办法使用它dircolors。处理单个文件的一种方法是使用Makefileor Kconfig:
dircolors
*Makefile 00;36
不幸的是,这会着色以 结尾的所有内容Makefile,而不仅仅是Makefile。以特定前缀开头的着色文件可能是不可能的。