Aqui está um trecho da documentação do bash:
When bash is invoked as an interactive login shell, or as a non-interactive shell with the
--login
option, it first reads and executes commands 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.
Como você já verificou o conteúdo de .bashrc
e
.bash_profile
no seu diretório inicial, é provável que a resposta
sua pergunta para ficar no arquivo /etc/profile
; algumas distribuições configuradas
padrões para todos os usuários, incluindo aliases. Se não, isso
configuração pode estar em um dos outros arquivos mencionados no
excerto.