5

是否可以缩短我的终端路径?

是否可以使它只显示当前目录?

4

2 回答 2

7

在终端试试这个

export PS1='\W$ '
于 2013-04-08T18:52:28.597 回答
4

该变量PS1定义您的路径查找。

例如:

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

  username@host /full/path/to/directory>

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

   username@host directory>

现在你也可以做

 export PS1="\u@\h  [\$(Some command with output)]> "

您将不得不编辑您的 ~/.bash_profile。所以它是在启动时加载的。因此将导出PS1=....放入 .bash_profile

重新启动终端将恢复您的所有编辑,这就是您将其放入 ~/.bash_profile 的原因

于 2013-04-08T18:53:29.750 回答