Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的问题。在我在终端工作之前,我做了类似的事情:将目录更改为文档,终端会告诉我我所在的文件夹。现在它没有。现在它只显示[User$]无论我在哪个目录。
[User$]
有谁知道如何解决这一问题?
[User$] cd Documents" [User Documents$]
您已更改命令提示符。打开你的~/.bashrc文件,最后添加
~/.bashrc
PS1='[\u \W$] '
尽管您可能希望您的提示是[user Documents]$,在这种情况下使用
[user Documents]$
PS1='[\u \W]\$ '