shell提示符 huiubantu@ubuntu:~$
- shell提示符保存在PS1变量中
- 包括用户名,主机名,当前工作目录
可以通过echo命令查看PS1的内容
huiubantu@ubuntu:~$ echo $PS1
[e]0;u@h: wa]${debian_chroot:+($debian_chroot)}u@h:w$ u是用户 h主机 w当前工作目录
通过一些特定的转义编码可以改变shell提示符的文本颜色,也可以移动光标,此处略
另外,为了使提示符永久保存,要放在.bashrc文件中,把以下两行添加在.bashrc文件中
PS1='[ 33[s 33[0;0H 33[0;41m 33[K 33[1;33m 33[0m 33[u]<u@h W>$ '
export PS