Linux,如何在shell promt中显示绝对路径?

时间:2015-09-21 07:25:00

标签: linux centos

现在我的shell显示了这样的短路径

enter image description here

我想在前面显示完整的绝对路径。就像这个

enter image description here

如何更改?

1 个答案:

答案 0 :(得分:2)

使用PS1附加\w变量并将其存储在您的.bash_profile

一个例子

export PS1="\u@\h \w> "

哪里

\u - 用户名

\h - 主机名

\w - 当前工作目录,完整路径(即:/ data / temp)

请查看tutorial以了解更多选项。