- 问题
每次启动Linux时,都需要source .bashrc
- 解决方法
vim .bash_profile
进入文件后,添加如下代码
# .bash_profile
if [ -f ~/.bashrc ]; then . ~/.bashrc fi
每次启动Linux时,都需要source .bashrc
vim .bash_profile
进入文件后,添加如下代码
# .bash_profile
if [ -f ~/.bashrc ]; then . ~/.bashrc fi