在FreeBSD慣用tcsh,但是在Mac上bash中文比較正常(Leopard之後似乎tcsh也能正常顯示中文),在Ubuntu則都正常,以下是我習慣用的prompt,Terminal背景為黑底淺灰字。
Bash: ~/.bashrc(或是~/.profile)最後加上
Tcsh: ~/.tcshrc 最後加上
參考資料:Return color labeling to the ls command
Bash: ~/.bashrc(或是~/.profile)最後加上
PS1="\$(date +%H:%M) \[\033[1;32m\]\u@\[\033[0m\h\[\033[0m\]\[\033[1;36m\]:\w\[\033[0m\]$"
LSCOLORS="DxGxFxdxCxegedabagacad"
export PS1 LSCOLORS
alias ls='ls -G'
Tcsh: ~/.tcshrc 最後加上
set prompt='%B%T %{^[[1;32m%}%n%{^[[m%}@%m:%{^[[1;36m%}%/%{^[[m%}~'
setenv LSCOLORS DxGxFxdxCxegedabagacad
if ($OSTYPE == "FreeBSD") then
alias ls 'ls -G'
else
alias ls 'ls --color=auto'
endif
參考資料:Return color labeling to the ls command
留言