Mac OS X 10.6.4 터미널 bash 시작을 사용자 화하기 위해 홈 폴더에 파일 .profile
또는 .bashrc
파일 이있을 수 있음을 알고 있습니다 .
터미널을 시작할 때마다 "메일이 있습니다"라는 줄이 있습니다. 나는이 라인은 내 시작 파일에 명시된 위치를 찾기 위해 노력하고 있지만, .bash도 찾을 수 .profile
없고 .bashrc
내 홈 폴더에 있습니다.
또한 전역 설정 파일이 /etc/profile
및에 있음을 읽었 /etc/bashrc
지만 아무 것도 알려주지 않는 것 같습니다.
/ etc / profile
# System-wide .profile for sh(1)
if [ -x /usr/libexec/path_helper ]; then
eval `/usr/libexec/path_helper -s`
fi
if [ "${BASH-no}" != "no" ]; then
[ -r /etc/bashrc ] && . /etc/bashrc
fi
/ etc / bashrc
# System-wide .bashrc file for interactive bash(1) shells.
if [ -z "$PS1" ]; then
return
fi
PS1='\h:\W \u\$ '
# Make bash check its window size after a process completes
shopt -s checkwinsize
BTW는 없습니다 /etc/bash
어떤 아이디어? 감사!