<ログインシェルとして起動したとき> 1. ログインすると、 bash は、まず /etc/profile 読み込んで実行 2. /etc/profile が /etc/profile.d/ 以下の全シェルスクリプトを実行 3. bash は、さらに ~/.bash_profile を読み込み実行。 4. ~/.bash_profile が ~/.bashrc を実行 5. ~/.bashrc が /etc/bashrc を実行 <ログインシェルでない場合> 1. bash が ~/.bashrc を実行 2. ~/.bashrc が /etc/bashrc を実行 <まとめ> 全ユーザのログイン時 :/etc/profile 個別ユーザのログイン時 :~/.bash_profile 全ユーザのbash起動時 :/etc/bashrc 個別ユーザのbash起動時 :~/.bashrc