刚刚遇到了如下情况,特此记录如何打开、编辑 .bash_profile 文件。
.bash_profile 文件用来配置环境变量
第一种方式:
启动终端Terminal,直接输入~/.bash_profile
会显示 No such file or directory
进入当前用户的home目录
输入cd ~
创建.bash_profile
输入touch .bash_profile
打开编辑.bash_profile文件
输入open -e .bash_profile
保存文件,关闭.bash_profile
更新刚配置的环境变量
输入source .bash_profile
在.bash_profile文件为锁定状态的时候,第一种方式是不可行的,那么用第二种方式来编辑.bash_profile文件
第二种方式
第二种方式,在Terminal终端通过指令来对.bash_profile文件进行编辑
输入 vim .bash_profile
输入 i
进行编辑模式
然后把需要编辑的内容键入,编辑完之后直接按esc退出编辑模式,
输入:w
进行文件的保存,:wq
为保存并退出指令