Mac 编辑~/.bash_profile 或者 ~/bashrc设置alias命令每次重启shell都要source

~/.bash_profile 或者~/.bashrc 中配置环境变量, 可是每次重启终端后配置的不生效
需要重新执行 : $source ~/.bash_profile

Mac使用zsh,是不会主动加载bash_profile文件的。

把变量设置在~/.zshrc

alias ll="ls -l"

source ~/.zshrc
重启shell就不会有问题了

在~/.zshrc最后一行加入一行命令食用更佳
source ~/.bash_profile

你可能感兴趣的:(Mac,linux,shell,mac)