develog

[bash] .bash_profile 에서 .bashrc 실행하기 본문

카테고리 없음

[bash] .bash_profile 에서 .bashrc 실행하기

냐옴 2024. 5. 17. 11:15

 

 

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

 

Comments