码迷,mamicode.com
首页 > 系统相关 > 详细

恢复linux系统文件夹颜色

时间:2018-02-24 23:13:48      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:系统   sock   fgrep   eval   usr   linux   device   red   div   

/etc/DIR_COLORS 默认值

# 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 01;34 # directory
LINK 01;36 # symbolic link
FIFO 40;33 # pipe
SOCK 01;35 # socket
BLK 40;33;01 # block device driver

还原默认值

在~/.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 grep=‘grep --color=auto‘
alias fgrep=‘fgrep --color=auto‘
alias egrep=‘egrep --color=auto‘
fi

 

恢复linux系统文件夹颜色

标签:系统   sock   fgrep   eval   usr   linux   device   red   div   

原文地址:https://www.cnblogs.com/ityunv/p/8467756.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!