2008/7/17

bash@freebsd的設定

參考了這裡這裡

bash@freebsd的設定
  1. $ vim .bashrc
  2. $ ln -s .bashrc .bash_profile
  3. $ source .bash_profile
.bashrc的內容
alias ll='ls -l'
alias la='ls -al'
alias ls='ls -FG'
#alias ls='ls --color'

alias vi='vim'

#export LS_COLORS="di=32"

LSCOLORS='Ca';export LSCOLORS

#BG color is blue if you are common user, red color if you are root
if [ ${UID} -eq 0 ]; then
PS1="\[\033[1;41;37m\][\u@\h \w ]\[\033[0;37m\]\$ "
else
PS1='\[\033[1;37m\][\u\[\033[1;36m\]@\h \[\033[1;37m\]\w ]\[\033[1;37m\]$\[\033[1;0m\]';
fi
export PS1

沒有留言:

張貼留言