반응형
iterm2 를 설치하면 zsh 가 설치되는데 이러면 시작 포인트가 .bash_profile 이 아니고 .zshrc 라고 합니다.
그러니 .zshrc 로 만들던가
.zshrc 에서 .bash_profile 을 불러주면됩니다.
if [ -f ~/.bash_profile ]; then
. ~/.bash_profile
fi
출처: https://dejavuqa.tistory.com/383
zsh 설치 후 .bash_profile 적용
Mac에서 Terminal을 열다 아무생각없이 zsh을 설치한 이후 .bash_profile에 지정한 내용이 반영되지 않았습니다. 처음에는 왜 적용이 안되지 하고 source ~/.bash_profile을 적용해서 사용했는데 Terminal을 열때
dejavuqa.tistory.com
반응형