默认情况下,Linux中的man
命令显示结果是不带颜色的,看起来交互性并不好。可以添加一些配置,为其添加一些颜色提示。
修改.bashrc
文件:
[root@localhost ~]# vim .bashrc
在文件最后加入如下配置:
# Set colors for man pages man() { env LESS_TERMCAP_mb=$(printf "\e[1;31m") LESS_TERMCAP_md=$(printf "\e[1;31m") LESS_TERMCAP_me=$(printf "\e[0m") LESS_TERMCAP_se=$(printf "\e[0m") LESS_TERMCAP_so=$(printf "\e[1;44;33m") LESS_TERMCAP_ue=$(printf "\e[0m") LESS_TERMCAP_us=$(printf "\e[1;32m") man "$@" }
保存退出,重新加载.bashrc
文件:
[root@localhost ~]# . !$
现在再去试试man
命令,发现它可爱多啦。
参考资料:
本文出自 “细桶假狗屎” 博客,请务必保留此出处http://xitongjiagoushi.blog.51cto.com/9975742/1684759
原文地址:http://xitongjiagoushi.blog.51cto.com/9975742/1684759