/.profile"意外的EOF,同时寻找匹配的`" '

时间:2014-12-08 03:25:21

标签: bash command-line

我是终端的新手,并一直致力于将Grunt添加到我的工作流程中。我在终端中收到此错误,并且在我的.profile文件中没有看到任何遗漏。

-bash: /Users/shawnwilliams/.profile: line 4: unexpected EOF while looking for matching `"'
-bash: /Users/shawnwilliams/.profile: line 6: syntax error: unexpected end of file

这是我的.profile(编辑为我提供了错误的文件。)

export PATH="$PATH:$HOME/.rvm/bin:/usr/local/bin” # Add RVM to PATH for scripting

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*

2 个答案:

答案 0 :(得分:3)

看起来你在/ usr / local / bin之后使用了非ascii双引号字符。尝试将双引号更改为ascii。

答案 1 :(得分:0)

问题出在您的.profile中,而不是.bash_profile,如错误消息所示。 你的.profile来自第一行,然后bash抱怨。