Linux 命令列提示符號顯示目錄名稱

vi ~/.bash_profile
加入
export PS1="\u@\h \[\033[32m\]\w\[\033[00m\] $ "

存檔後重新登入或是執行
source ~/.bash_profile

如果要顯示 git branch 名稱,改加入
parse_git_branch() {
     git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "

參考: https://coderwall.com/p/fasnya/add-git-branch-name-to-bash-prompt

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *