我知道您可以在主文件夹中有一个.profile
或.bashrc
文件来自定义Mac OS X 10.6.4 Terminal bash启动。
每次我启动Terminal时,都会有一行告诉我“您有邮件”。我试图找到这条线在我的启动文件规定,但无法找到.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
顺便说一句,没有 /etc/bash
有任何想法吗?谢谢!