vi ~/.dir_colors
找到“DIR 0134 # directory”,将34改为36。
数字代表的颜色 在下面会有显示
你可以找到文件的两行注释:
# Text color codes:
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
ubuntu
因为ubuntu下的/etc/目录里没有DIR_COLORS(别找了,肯定没有), 所以费了点劲儿
1. 利用dircolors命令,查看我们的系统当前的文件名称显示颜色的值,然后利用管道重定向到用户目录下的任意一个文件(这里我们创建了一个.dir_colors文件)
命令1: cd ~
命令2: dircolors -p >.dircolors
2. 用vim打开.dircolors文件,然后找到“DIR 0134” //这里的01表示高亮度显示,34表示蓝色,33表示黄色
修改为 “DIR 0133”,保存退出
如果生成的文件不是.dircolors 需要进行第三步
3. 为了将修改之后的配置文件导入到dircolors中,我们采取如下的方案
打开用户目录下的.bashrc文件,找到类似“eval 'dircolors -b '”(如果没有自行添加),
修改为 eval 'dircolors -b .dir_colors' 保存退出 //这里的.dir_colors就是我们前面自己创建的文件
4. 为了让修改生效,退出,并重新进入系统
命令: exit
5. 就可以按照你的意思来显示目录了
第一步,配置文件:命令行:dircolors -p >~/.dircolors
第二步,修改文件:
使用vi打开~/.dircolors 文件,找到这一行: DIR 01:34 #directory
修改34为33
第三步,重新加载:
打开~/.bashrc文件,在末尾添加一段代码
Linux下面文件夹的颜色(默认为深蓝),修改文件夹颜色的方法分为三步来解决:
1、配置文件:
dircolors -p >~/.dircolors (这个名字一会会用到)
2、修改文件:
#打开文件,找到这一行:DIR 0134 # directory# Background color codes:
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
NORMAL 00 # global default, although everything should be something.
FILE 00 # normal file
DIR 0134 # directory
LINK 0136 # symbolic link
FIFO 4033 # pipe
SOCK 0135 # socket
BLK 403301 # block device driver
#修改34,换一个想要的颜色就可以了,
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
3、重新加载:
#看一下~/.bashrc这个文件,里面有关于上面会用到的名字关联# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ] then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
#执行以下就重新加载
source ~/.bashrc
效果图:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)