shell 提示符个性化设置
Posted liown
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 提示符个性化设置相关的知识,希望对你有一定的参考价值。
提示符具体含义可参考: http://billie66.github.io/TLCL/book/zh/chap14.html
Ubuntu16.04个人配置如下,供以后查阅
1 function git_branch { 2 branch="`git branch 2>/dev/null | grep "^\*" | sed -e "s/^\*\ //"`" 3 if [ "${branch}" != "" ];then 4 if [ "${branch}" = "(no branch)" ];then 5 branch="(`git rev-parse --short HEAD`...)" 6 fi 7 echo " ($branch)" 8 fi 9 } 10 export PS1=‘\[\033[4;45m\]\u\[\033[00m\]@\h \[\033[01;36m\]\W\[\033[01;32m\]$(git_branch)\[\033[00m\]\$ ‘
以上是关于shell 提示符个性化设置的主要内容,如果未能解决你的问题,请参考以下文章