# .bashrc
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias ll='ls -al --block-size=M'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
export PS1="\[\e[31;1m\][\u@\[\e[34;1m\]\H \W]# \[\e[0m\]"
저장한 후에 로그아웃하고 로그인을 다시 하면 이뿌게 보임 ^^
재로그인이 귀찮다면 아래 Command 를 이용하면 재로그인 없이 바로 사용가능.
source ~/.bashrc

