ubuntu修改显示路径

1、备份文件

sudo cp ~/.bashrc ~/.bashrc.bak

2、修改文件

sudo vim ~/.bashrc

找到

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\$ '

fi

unset color_prompt force_color_prompt

 

将句中的小写w改成大写W,可以实现修改普通用户的路径回显;

找到

# If this is an xterm set the title to user@host:dir

case "$TERM" in

xterm*|rxvt*)

  PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"

;;

*)

    ;;

esac

将句中小写w改成大写W可以更改root用户的路径回显

3、 :wq保存退出

4、exit退出终端

5、重新开启终端实现了取消完整路径回显

6、 若不想重启终端、可使用source命令

你可能感兴趣的:(ubuntu)