.bashrc环境变量重启后失效

问题现象
1. 首次增加环境变量后执行source ~/.bashrc使用正常
2. 系统重启后失效,需要再次执行source ~/.bashrc

解决方法
.bash_profie中增加

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ] ; then
        source .bashrc
fi

然后source ~/.bash_profile