问题
之前的配置写在 home/用户目录/ 下的.bashrc 里
通过ssh每次访问都需要重新source一下
解决办法
- 在 .bash_profile里面再引用一次.bashrc就可以了
vim ~/.bash_profile添加代码
if test -f .bashrc ; then
source .bashrc
fi
wq保存即可
之前的配置写在 home/用户目录/ 下的.bashrc 里
通过ssh每次访问都需要重新source一下
if test -f .bashrc ; then
source .bashrc
fi
wq保存即可
本文标题:.bashrc文件自动生效(转)
本文链接:https://www.haomeiwen.com/subject/ochzmqtx.html
网友评论