在 Linux bash 中欲設定提示字元的顏色等參數,需修改環境變數 PS1
而色彩編碼即為 ASCII 所用的編碼:
ANSI 黑 紅 綠 黃 藍 紫 靛 白
前景 30 31 32 33 34 35 36 37
背景 40 41 42 43 44 45 46 47
將以下指令寫入~/.bash_profile
export PS1="\[\033[1;34m\]\u\[\033[0;37m\]@\h\[\033[0;33m\]:\w$\[\033[0m\] "
其中 [1;34m\] 中 1 代表要高亮度顯示,否則設為 0
\u :user name
\h :host name
\w:working directory
上面那個例子會設定 user name 為藍色、 host 為白色、當前目錄為黃色
參考--Bash Prompt HOWTO--
This entry was posted
on 2009年5月1日 星期五
at 中午12:46
and is filed under
Linux
. You can follow any responses to this entry through the
comments feed
.