Por que isso seria possível? Você não está executando o verdadeiro bash
:
$ echo $SHELL
/bin/sh
Na maioria dos sistemas modernos, sh
é um link simbólico para um shell básico. No meu Debian, por exemplo:
$ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Aug 1 2012 /bin/sh -> dash
No seu caso, sh
é um link para bash
, mas, como explicado em man bash
:
If bash is invoked with the name sh, it tries to mimic the startup behavior of historical versions of sh as closely as possible, while conforming to the POSIX standard as well. [...] When invoked as an interactive shell with the name sh, bash looks for the variable ENV, expands its value if it is defined, and uses the expanded value as the name of a file to read and execute. Since a shell invoked as sh does not attempt to read and execute commands from any other startup files, the --rcfile option has no effect.
e
--norc
Do not read and execute the system wide initialization file /etc/bash.bashrc and the personal initialization file ~/.bashrc if the shell is interactive. This option is on by default if the shell is invoked as sh.
Portanto, como seu shell padrão é sh
, .bashrc
não é lido. Basta definir seu shell padrão para bash usando chsh -s /bin/bash
.