是否可以缩短我的终端路径?
是否可以使它只显示当前目录?
在终端试试这个
export PS1='\W$ '
该变量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 的原因