linux配置文件执行顺序为:
/etc/profile→ (~/.bash_profile | ~/.bash_login | ~/.profile)→ ~/.bashrc →/etc/bashrc → ~/.bash_logout
假如在~/.bash_profile文件中没有下面的代码:
if [ -f ~/.bashrc ] ; then
source .bashrc
fi
那么linux就不会自动执行~/.bashrc文件,所以你每次登陆的时候都要手动输入source ~/.bashrc。
所以需要vi ~/.bash_profile 添加代码块中的内容