标签:
想必在命令行模式用久了,都看厌了那个单调又丑的提示符,个人认为还占了些位,要是命令长的话还会断行.
想改成
cd ~/ touch .bash_profile vim .bash_profile
osx环境下操作的,关键语法 \[颜色\]prompt参数\[$reset\] 例如:\[$red\]\t\[$reset\]
reset=$(tput sgr0) green=$(tput setaf 2) yellow=$(tput setaf 3) blue=$(tput setaf 4) magenta=$(tput setaf 5) cyan=$(tput setaf 6) PS1="\[$magenta\]\u\[$reset\] at \[$blue\]\h\[$reset\] in \[$yellow\]\W\n\[$reset\]\[$green\]\$\[$reset\]" export PS1
:wq 保存离开
source .bash_profile
tput命令使用方式
prompt参数:
标签:
原文地址:http://www.cnblogs.com/jHenry/p/4263450.html