设置环境变量时,有一点要注意:
/etc/bash.bashrc与/etc/profile是有区别的
什么区别呢?
打开一个新的shell时,会读取/etc/bash.bashrc和~/.bashrc里的内容;
而linux登录时会读取/etc/profile和~/.profile里的内容;
所以,我们可以根据自己的需要,在/etc/bash.bashrc或/etc/profile中添加内容:
export PATH=~/bin:$PATH
使配置生效:
source /etc/bash.bashrc或/etc/profile