开机自动加载bahrc命令
mac 下面启动的 shell 是 login shell,所以加载的配置文件是 ~/.bash_profile
,而非 ~/.bashrc
可以检查是否已设置过开机加载 bashrc 配置:
# 查看文件中是否包含 [ -r ~/.bashrc ] && source ~/.bashrc 内容
cat ~/.bash_profile
1
2
2
若未设置,可以执行以下命令使每次开机后自动生效:
vim ~/.bash_profile
1
在文件末尾添加以下内容:
[ -r ~/.bashrc ] && source ~/.bashrc
1
保存退出后,重启系统即可生效。
上次更新: 2024-01-07 11:14:31