命令提示符(PS1)的设置
刚才设置了一下PS1命令提示符。
在rhel5中的 ~/.bashrc 中加入了一句:
PS1="\u@\h \w\$ "
将/etc/下的全局设置覆盖掉,.或source一下就可以了
其中“\u”代表username,“\h”代表hostname,而“\w”代表workplace。(这都是我猜的)
有的系统默认的是“\W”,大写W显示的是当前所在文件夹,而小写w显示当前完整的路径。
p.s.
我的Ubuntu系统中命令提示符是这样设置的:
case "$TERM" in
xterm-color)
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
;;
*)
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
;;
esac
Labels: Linux, Operation and Maintenance
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home