心安处即吾乡!
分类: LINUX
2014-05-22 18:27:40
1、将下面的代码拷贝到~/.bash_login中,可以让man有颜色
export LESS_TERMCAP_mb=$'\E[01;31m'
export LESS_TERMCAP_md=$'\E[01;31m'
export LESS_TERMCAP_me=$'\E[0m'
export LESS_TERMCAP_se=$'\E[0m'
export LESS_TERMCAP_so=$'\E[01;44;33m'
export LESS_TERMCAP_ue=$'\E[0m'
export LESS_TERMCAP_us=$'\E[01;32m'
## 指定less为默认阅读器
export PAGER=less
2、让ls有颜色显示,可以在~/.bash_profile中加入:
alias ls=’/bin/ls --color=auto’ ## 如果ls已经是有彩色输出了, 可忽略
3、让grep可以高亮选择的关键字,可以在~/.bash_profile中加入:
alias grep='grep --color' ## 这个是强烈推荐的, 用过多后肯定会喜欢
4、解释一下各个配置文件的读取顺序:
[[ -r /etc/profile ]] && source /etc/profile
if [[ -r ~/.bash_profile ]]; then
source ~/.bash_profile
elif [[ -r ~/.bash_login ]]; then
source ~/.bash_login
elif [[ -r ~/.profile ]]; then
source ~/.profile
fi
[[ -r ~/.bashrc ]] && source ~/.bashrc
值得注意的是, 一个login bash并不会去执行 [[ -r ~/.bashrc ]] && source ~/.bashrc
以上所讲的配置都是基于 bash 而不是 sh (即使 sh 是 bash的 symbol link, 即使vi是vim的symbol link, 以不同的名字运行时效果并不完全一样)