bashの表示を変える

シェルの表示が淡白で、いまどこにいるのかすぐに分からなくなっちゃうので、表示をカスタマイズ。
思わず MS-DOSを使ってた昔を思い出しますね、こういうの。

参考文献
http://www.itmedia.co.jp/help/tips/linux/l0360.html
http://journal.mycom.co.jp/column/osx/071/index.html
http://cyberam.dip.jp/linux_command/bash/bash_main.html#9

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

# User specific aliases and functions
export PS1='[\u @ \h \w ]\n$ '