ubantu终端下只显示当前路径,而不显示绝对路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubantu终端下只显示当前路径,而不显示绝对路径相关的知识,希望对你有一定的参考价值。




Ubuntu下,默认情况下,对于终端,是显示出绝对的路径的,比如:

技术分享

现在想要让其只显示相对路径。

 

【解决过程】

参考:

Linux中,去掉终端显示的当前目录的绝对路径


1。先输入命令:

sudo vim ~/.bashrc

找到.bashrc中的,有关PS1的部分,从:

if [ “$color_prompt” = yes ]; then
    PS1=’${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[email protected]\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ‘
else
    PS1=’${debian_chroot:+($debian_chroot)}\[email protected]\h:\w\$ ‘
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to [email protected]:dir
case “$TERM” in
xterm*|rxvt*)
    PS1=”\[\e]0;${debian_chroot:+($debian_chroot)}\[email protected]\h: \w\a\]$PS1″
    ;;
*)
    ;;
esac

 

改为:

if [ “$color_prompt” = yes ]; then
    PS1=’${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[email protected]\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ‘
else
    PS1=’${debian_chroot:+($debian_chroot)}\[email protected]\h:\w\$ ‘
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to [email protected]:dir
case “$TERM” in
xterm*|rxvt*)
    PS1=”\[\e]0;${debian_chroot:+($debian_chroot)}\[email protected]\h: \W\a\]$PS1″
    ;;
*)
    ;;
esac


2.保存修改,退出vim。然后再source一下,发现终端的标题变成当前路径了:

技术分享

PS:注意终端的顶端路径已经改变了。

3.再重启终端,看看是否生效。

4.再去把上面那个PS1中的值,变成:

if [ “$color_prompt” = yes ]; then
    PS1=’${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[email protected]\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ ‘
else
    PS1=’${debian_chroot:+($debian_chroot)}\[email protected]\h:\W\$ ‘
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to [email protected]:dir
case “$TERM” in
xterm*|rxvt*)
    PS1=”\[\e]0;${debian_chroot:+($debian_chroot)}\[email protected]\h: \W\a\]$PS1″
    ;;
*)
    ;;
esac

然后保存退出vim,再source一下:



效果如下:

技术分享

 

【总结】

想要将Ubuntu的终端,中的绝对路径的显示,变成当前路径(文件夹)的话,则需要去修改自己的.bashrc,将其中的小写的w,改为大写的W即可:

(1)针对终端的标题title

从:


1
2
3
4
5
6
7
8
# If this is an xterm set the title to [email protected]:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\[email protected]\h: \w\a\]$PS1"
    ;;
*)
    ;;
esac

改为:


1
2
3
4
5
6
7
8
# If this is an xterm set the title to [email protected]:dir
case "$TERM" in
xterm*|rxvt*)
    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\[email protected]\h: \W\a\]$PS1"
    ;;
*)
    ;;
esac

 

(2)针对终端的当前显示prompt

从:

?

1
2
3
4
5
6
if [ "$color_prompt" = yes ]; then
    PS1=‘${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[email protected]\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ‘
else
    PS1=‘${debian_chroot:+($debian_chroot)}\[email protected]\h:\w\$ ‘
fi
unset color_prompt force_color_prompt

改为:

?

1
2
3
4
5
6
if [ "$color_prompt" = yes ]; then
    PS1=‘${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\[email protected]\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ ‘
else
    PS1=‘${debian_chroot:+($debian_chroot)}\[email protected]\h:\W\$ ‘
fi
unset color_prompt force_color_prompt


本文出自 “水仙花” 博客,请务必保留此出处http://10704527.blog.51cto.com/10694527/1795148

以上是关于ubantu终端下只显示当前路径,而不显示绝对路径的主要内容,如果未能解决你的问题,请参考以下文章

cygwin命令-cygwin显示当前路径的绝对路径

仅在终端中显示当前路径[关闭]

Linux学习(完整)

linux实战技能100讲---初识pwd和ls命令详解

linux怎么打印文件的路径和文件的内容

linux终端命令行前缀设置为“当前目录”(非绝对路径)