gnome-terminal的一些调整
通过一些修改让命令行用的更加舒服
- 彩色显示
case "$TERM" in
xterm-color) color_prompt=yes;;
esac
改成
case "$TERM" in
xterm|xterm-color) color_prompt=yes;;
esac
- 提示符另起一行
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
改成
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\n\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\n\$ '
posted on 2014-11-29 21:32 joy.zhuang 阅读(1046) 评论(0) 编辑 收藏 举报