Mac세상

os x .bash_profile 설정하기

saltdoll 2014. 11. 13. 16:27
반응형

mac os x에서 .bash_profile 설정하기

(기본적으로 .profile 파일를 읽어 오게 되어 있습니다. 환경 설정을 읽는 부분을 .bash_profile로 읽기로 변경하기)

 

 

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

 

출처:http://stackoverflow.com/questions/18773051/how-to-make-os-x-to-read-bash-profile-not-profile-file

 

 

반응형