Answers:
创建.profile
在同一文件夹中.bash_profile
,即/Users/your-user-name/
也可下~
或$HOME
。
您可以使用您选择(像一个文本编辑器或命令行编辑器中添加行vim
,emacs
或nano
),但你也可以用文本编辑做到这一点:
open -a TextEdit ~/.bash_profile
export
命令?一件重要的事情:如果您已经有一个.bash_profile
,您.profile
将不会自动加载。从bash的手册中:
它查找
~/.bash_profile
,~/.bash_login
和~/.profile
以该顺序,并且读取并从存在并且可读的第一个执行命令。
因此,当您已经有一个~/.bash_profile
文件并创建一个时~/.profile
,bash将永远不会自动读取后者。您可以在其中添加适当的export
命令,~/.bash_profile
如果您始终使用bash,它将可以正常工作:
export PATH=/usr/local/mysql/bin/:$PATH
.profile
自.bash_profile
如果要单独使用.profile
,则需要从中手动添加~/.bash_profile
。将以下内容放入~/.bash_profile
:
source ~/.profile
sudo
进行编辑.profile
。