반응형
iterm2 를 설치하면 zsh 가 설치되는데 이러면 시작 포인트가 .bash_profile 이 아니고 .zshrc 라고 합니다.
그러니 .zshrc 로 만들던가
.zshrc 에서 .bash_profile 을 불러주면됩니다.
if [ -f ~/.bash_profile ]; then
. ~/.bash_profile
fi
출처: https://dejavuqa.tistory.com/383
반응형