一点背景:
我正在运行Windows 10
,已安装git bash
并创建了.bashrc
文件。
现在在我的 中.bashrc
,我有以下行:
PS1='\w\> '
假设我在桌面上,有一个名为 的文件夹test
。在 中git bash
,它将显示:
~/Desktop/Test\> (enter command here)
在我的中cmd
,它会显示:
C:\Users\John\Desktop\Test> (enter command here)
我喜欢它cmd
显示的路径,并且想知道是否可以git bash
通过修改PS1
.
答案1
这似乎不可能用\w
or\W
但你可以这样做:
PS1='$PWD> '