.bashrc is not sourced when you log in using SSH. You need to source it in your .bash_profile like this:
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
.bashrc is not sourced when you log in using SSH. You need to source it in your .bash_profile like this:
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi