If your .bashrc file is not being sourced when you connect to your system over SSH and it only gets sourced when you open up a terminal locally on the system.
you may need to add the following to your etc/profile file
if [ -e ~/.bashrc ]; then
. ~/.bashrc
fi
No comments:
Post a Comment