Ubuntu终端只显示当前文件目录
$: sudo vim ~/.bashrc
这个文件记录了用户终端配置
找到1
2
3
4if [ “$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 \$ ‘
将蓝色的w由小写改成大写,可以表示只显示当前目录名称.