debian 配置文件夹颜色
debian目录颜色的更改方法
1.修改~/.bashrc中:
# enable color support of ls and also add handy aliasesif [ "$TERM" != "dumb" ]; then #eval "`dircolors -b`" eval "`dircolors ~/.dircolors`" alias ls='ls --color=auto' #alias dir='ls --color=auto --format=vertical' #alias vdir='ls --color=auto --format=long'fi
# You may uncomment the following lines if you want `ls' to be colorized:export LS_OPTIONS='--color=always' eval "`dircolors`" alias ls='ls $LS_OPTIONS' alias ll='ls $LS_OPTIONS -l' alias l='ls $LS_OPTIONS -lA'