1 개요[ | ]
- /root/.bash profile
- ~/.bash_profile
- 사용자별 Bash 쉘 프로파일
- 사용자 쉘 환경에 대한 설정 파일
- 로그인시 적용됨
- 계정별 홈폴더에 숨은파일로 있음
2 기본 내용[ | ]
Bash
Copy
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
3 같이 보기[ | ]
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.