首页 > 代码库 > bashrc的加载
bashrc的加载
无意中将home下的所有文件都删除了,一些配置文件都丢了。
重新登陆后,发现无法加载bashrc。
查找后,发现问题不在于bashrc,而在与.bash_profile丢失
login shell mode 只会读取 ~/.bash_profile , ~/.bash_login , ~/.profile 里面其中一个而已。
将其他系统上的.bash_profile 拷贝来即可,或者
# .bash_profile# Get the aliases and functionsif [ -f ~/.bashrc ]; then . ~/.bashrcfi# User specific environment and startup programsPATH=$PATH:$HOME/binexport PATH
bingo
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。