ホームフォルダに.profile
または.bashrc
ファイルを入れてMac OS X 10.6.4ターミナルbashスタートアップをカスタマイズできることを知っています。
ターミナルを起動するたびに、「You've got mail」というメッセージが表示されます。この行が私のスタートアップファイルで記述されている場所を見つけようとしていますが、.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
何か案は?ありがとう!