/root/.bash profile

Jmnote (토론 | 기여)님의 2016년 1월 4일 (월) 21:01 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

/root/.bash profile
~/.bash_profile
  • 사용자별 Bash 쉘 프로파일
  • 사용자 쉘 환경에 대한 설정 파일
  • 로그인시 적용됨
  • 계정별 홈폴더에 숨은파일로 있음

2 기본 내용[ | ]

# .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 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}