首页 > 系统服务 > 详细

恢复linux系统文件夹颜色

时间:2018-02-24 22:39:53      阅读:315      评论:0      收藏:0      [点我收藏+]

/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系统文件夹颜色

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!