是否可以缩短终端路径?
是否可以使它只显示当前目录?
答案 0 :(得分:4)
在终端
中尝试此操作export PS1='\W$ '
答案 1 :(得分:3)
变量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