~/.bash_profile이 적용되지 않을 때

이태혁·2020년 6월 22일
0

출처: https://apple.stackexchange.com/questions/315985/terminal-run-source-bash-profile-every-time-start-new-terminal

bash_profile파일에 alias를 저장하면서 코딩을 하는데 터미널을 켤때마다
이 alias가 제대로 적용이 되지 않아 항상
source ~/.bash_profile을 해줘야하는 불편함이 있었다.

Oh-my-zsh을 쓰는 경우
~/.zshrc 파일 마지막에 다음과 같은 문구를 추가해주면
터미널을 켤때마다 ~/.bash_profile파일을 적용시켜준다.

if [ -f ~/.bash_profile ]; then
	. ~/.bash_profile
fi
profile
back-end, cloud, docker, web의 관심이 있는 예비개발자입니다.

0개의 댓글