っぽい。

検証

設定ファイル

~/.bashrc
1
echo This is .bashrc
~/.bash_profile
1
echo This is .bash_profile

ログイン時の挙動

1
2
3
4
This is .bash_profile

kunst@DESKTOP-T3CMM04 MINGW64 ~
$

→ .bash_profile しか読み込まれてない

追加でbashを起動した時の挙動

1
2
$ bash
This is .bashrc

→ OK

対策

.bash_profileから.bashrcを読み込む

~/.bash_profile
1
2
3
4
5
echo This is .bash_profile

if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi

ログイン時の挙動

1
2
3
4
5
This is .bash_profile
This is .bashrc

kunst@DESKTOP-T3CMM04 MINGW64 ~
$

→ OK

追加でbashを起動した時の挙動

1
2
3
$ bash
This is .bashrc

→ OK