Shell 调整以另外显示当前路径

Shell 调整以另外显示当前路径

我正在使用 ubuntu 10.10,现在我在 shell 中得到了类似这样的信息:

machine1user@mylinux:~:

我怎样才能将其更改为

machine1user@mylinux:/my/current/path :~: ?

答案1

末尾的“~”你当前的路径。:)

答案2

在文本编辑器中打开~/.bashrc。搜索以下内容:

    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt

# 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"

并将其更改为:

    PS1='${debian_chroot:+($debian_chroot)}\u@\h:$PWD\$ '
fi
unset color_prompt force_color_prompt

# 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: $PWD\a\]$PS1"

具体来说,您要用 替换\w$PWD第一个引用设置命令提示符的文本;第二个引用设置通常显示在终端菜单栏中的标题。

相关内容