xiaoxiao 发表于 2016-2-9 12:04:56

修改Debian终端显示字体颜色,区分文件和目录

本帖最后由 xiaoxiao 于 2016-2-14 09:59 编辑

默认安装好 Debian 系统后,大家会发现用 ls 命令不带参数,不会显示彩色。可加一个 –color 参数来显示颜色
例如:
ls --color

每次都带参数未免有些麻烦,最好的方法是把它写到默认配置文件 .bashrc 里,位于用户目录。
1:因此,通过修改 .bashrc 文件,永久受益
vi ~/.bashrc

2:去掉默认的注释后,然后代码如下:
# ~/.bashrc: executed by bash(1) for non-login shells.

# Note: PS1 and umask are already set in /etc/profile. You should not
# need this unless you want different defaults for root.
# PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
# umask 022

# You may uncomment the following lines if you want `ls' to be colorized:
export LS_OPTIONS='--color=auto'
eval "`dircolors`"
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
#
# Some more alias to avoid making mistakes:
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'

保存退出后,重新打开一个终端,运行 ls 命令就可以看到彩色效果了!




页: [1]
查看完整版本: 修改Debian终端显示字体颜色,区分文件和目录