vi ~/.bash_profile
if [ -f ~/.bashrc ] ; then source ~/.bashrc fi
到这里,退出会话,重新登陆ssh,基本就可以解决每次登陆ssh后都要输入source ~/.bashrc命令的问题了, 如果还没有解决,继续配置~/.bashrc
vi ~/.bashrc
if [ -f /etc/bashrc ] ; then source .bashrc fi
配置文件的执行顺序为:/etc/profile→ (~/.bash_profile | ~/.bash_login | /.profile)→/.bashrc →/etc/bashrc → ~/.bash_logout