Mac 打开、编辑 .bash_profile 文件
我们在上一篇mac 上配置flutter开发环境 flutter安装入门教程 里面,会常常用到一个配置文件 .bash_profile, 那么在mac上面如何使用呢?
一般在Mac上配置环境变量时经常要创建、编辑 .bash_profile文件。创建该文件时一般都会选择在当前用户目录下,即Mac下的.bash_profile 文件的路径是 /Users/YourMacUserName/.bash_profile (如果该文件已经创建过的话)。
1、创建 .bash_profile
(1) 启动终端 (2) 进入当前用户的home目录(默认就是): cd ~ 或 cd /Users/YourMacUserName (3)输入touch .bash_profile
2.查看 、编辑 .bash_profile 文件
(1)终端输入 open -e .bash_profile (如果只是查看,直接使用open .bash_profile) (2)编辑 (3)关闭即可保存修改
3. 更新刚配置的环境变量
输入source .bash_profile
虽然不难但是经常会用到,避免脑子内存不够,整理到博客上,喜欢可以收藏!