Bash

更改 .bashrc 中的 PS1 以顯示以下目錄路徑:

  • January 15, 2018

一點背景:

我正在執行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.

這似乎是不可能的\wor\W但你可以這樣做:

PS1='$PWD> '

引用自:https://unix.stackexchange.com/questions/417133