3
bash配置文件启动文件在哪里?
我知道您可以在主文件夹中有一个.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 …