在OSX Mavericks中添加命令到路径

时间:2014-02-21 10:49:43

标签: macos console osx-mavericks

我正在尝试使用~/.bash_profile在我的OSX Mavericks中为我的路径添加变量,但是当我输入它时,我收到此错误:

-bash: /Users/MyUser/.bash_profile: No such file or directory

我已经在小牛队的某个地方看到了以不同的方式完成的事情。

任何人都知道如何做到这一点?

1 个答案:

答案 0 :(得分:2)

我在Maverick上使用._bash_profile和.bashrc,这很好用。 如果它不存在,您可以使用,vim,emacs或任何编辑器创建和编辑它。

$ touch~ / .bash_profile

$ open~ / .bash_profile -a" TextEdit"

这是我的.bash_profile,第二行(导出路径)就是你要找的。

# Set architecture flags
export ARCHFLAGS="-arch x86_64"
# Ensure user-installed binaries take precedence
export PATH=/usr/local/bin:$PATH
# Load .bashrc if it exists
test -f ~/.bashrc && source ~/.bashrc
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced

看,它有效!艾哈哈goo.gl/eDBVD0