解决macos的.bash_profile配置环境变量每次都需要使用source 激活才能生效的问题

出现的情况

        今天在mac机器上的~/.bash_profile上配置了一个ll指令:

alias ll='ls -alhtr'

在新开一个terminal后,执行ll后,命令并没有生效。后面,只能再:

source ~/.bash_profile

 ll命令生效了。但是每次打开terminal,都需要手动的用source来激活一次还是很麻烦的。因此,想着找到方案能解决这个问题。

解决方案

        step1: 使用vim  或者vi 打开 ~/.zshrc。

        step2: 在 ~/.zshrc 中新增一句:

source ~/.bash_profile

        step3::wq保存修改后的 ~/.zshrc文件。

        step4:source ~/.zshrc,激活.zshrc 文件。

        重新打开一个terminal后,试着使用ll命令,生效,问题解决。 

你可能感兴趣的:(macos,macos,bash,开发语言)