# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
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
# 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
我假设您希望当前工作目录显示在您的提示符中。
根据您的屏幕截图,您的提示仅显示您的机器名称。您给出的输出
echo $PS1
甚至没有给我...我无法复制您的提示,而无需稍加修改:也许您有:\[\e]0;\u@\h: \w\a\]\H\$
或者...您可能正在使用不同的外壳?这是一个非常简单的提示代码,它显示了用户名、计算机名和当前工作目录(在终端中输入以进行测试):
但可能您希望在提示符和窗口标题中使用工作目录...... Ubuntu 中的正常提示符是这样的:
由以下方式设置
~/.bashrc
:所以也许你在你的里面放了一些东西
.bashrc
来覆盖它。看看它的末尾是否有类似的行或者
查看它是否已被覆盖,如果这些行存在则注释掉它们(放在
#
行的开头)或删除它们。.bashrc
如果您只想恢复正常提示,您还可以检查我上面粘贴的部分(我的第 38-73 行)是否存在并且没有更改。得到一个完全干净的
.bashrc
如果你想自定义你的提示,你可以继续玩,直到你得到你想要的……这个网站有助于参考。
当你有你想要的东西添加到 .bashrc
另请参阅我最喜欢的 AU 问题之一