.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
问题现象
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