环境:ubuntu16.04 ubuntu在默认情况下是显示绝对路径的,进入目录过长的时候让人感觉很不舒服,现在修改成只显示当前目录 vim ~/.bashrc 找到这句 # If this is an xterm set the title to user@host:dir case "$TERM" in xterm*|rxvt*) # PS1="\e]0;$debianchroot:+($debianchroot)\u@\h:\w\a$PS1" PS1=&quo…
原文链接:https://www.jianshu.com/p/4239d3ea72fe cd ls -la vim .bashrc 在.bashrc中加入这一行: PS1="\[\e[37;40m\][\[\e[36;40m\]\u@\h \[\e[36;40m\]\w\[\e[0m\]]\\$ " 退出.bashrc文件 然后执行 source .bashrc…