Provavelmente seu shell é um shell de login interativo, portanto, ele não lê ~/.bashrc
, mas ~/.bash_profile
:
When bash is invoked as an interactive login shell, or as a non-inter‐
active shell with the --login option, it first reads and executes com‐
mands from the file /etc/profile, if that file exists. After reading
that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile,
in that order, and reads and executes commands from the first one that
exists and is readable. The --noprofile option may be used when the
shell is started to inhibit this behavior.
A correção rápida e suja pode ser apenas para fazer um link simbólico de ~/.bashrc
para ~/.bash_profile
ou vice-versa. Isso é possível quebrar algo com shells não interativos, por exemplo comandos são executados remotamente através do SSH, então pense duas vezes.
Veja a seção "INVOCATION" em man bash
para mais detalhes.