让man页变得“缤纷色彩”起来

来源:互联网 发布:天刀捏脸数据女含笑 编辑:程序博客网 时间:2024/05/01 23:38

 

#!/bin/bash

# man_color.sh

# 将此文件放到/etc/profile.d下


export PAGER="`which less` -s"
export BROWSER="$PAGER"
export LESS_TERMCAP_mb=$'/E[01;31m' # 01 - bold 34 - blue foreground
export LESS_TERMCAP_md=$'/E[01;34m' # 31 - red foreground
export LESS_TERMCAP_me=$'/E[0m' # reset all attributes
export LESS_TERMCAP_se=$'/E[0m'
export LESS_TERMCAP_so=$'/E[01;40;32m' # 40 - black background 35 - magenta foreground
export LESS_TERMCAP_ue=$'/E[0m'
export LESS_TERMCAP_us=$'/E[01;35m' # 32 - green foreground

原创粉丝点击