/home/계정 이하에 있는데

 

1. .bash_profile
--------------------------------------------------------------
.bash_profile : login shells로 접속시 사용자 정보를 로드함 (.bashrc 내용을 읽음)

.bash_profile의 상단에 아래와 같은 소스로 .bashrc파일을 로드한다.

if [ -f ~/.bashrc ]; then
 . ~/.bashrc
fi

 


2. .bashrc
--------------------------------------------------------------
.bashrc : non-login shells로 접속시 사용자 정보를 로드함

따라서 로그인이 필요하든 필요하지 않든 공통으로 처리해야할 환경정보는 .bashrc에 정의 하면 된다. (예. jenkins에서 shell script실행시)

 


3. 환경정보 적용하기
--------------------------------------------------------------
source .bash_profile