본문 바로가기

Linux/Shell

.bashrc 기본 파일 소스

# vi ~/.bashrc

# .bashrc
 
# User specific aliases and functions
 
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
 
# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

'Linux > Shell' 카테고리의 다른 글

리눅스 쉘프롬프트 변경 방법 (.bashrc)  (1) 2009.03.26
bash shell 한글 깨짐 방지  (1) 2008.04.25
.bashrc 파일 소스 [완성판 ver.1.0]  (0) 2008.04.25