For some time now my MAC terminal offers me an error every time I open a new screen of my terminal, I have been searching for information on Google and the truth is that I have not found anything convincing, I show you the error:
-bash: /Users/name/.rvm/script/rvm: No such file or directory
-bash: /Users/name/.bash_profile: line 11: unexpected EOF while looking for matching `"'
-bash: /Users/name/.bash_profile: line 14: syntax error: unexpected end of file
.bash_profile file :
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM$
source ~/.rvm/script/rvm
source ~/.rvm/scripts/rvm
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"
export PATH=$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
PATH=/usr/local/bin:/usr/local/sbin:/Users/name/.rbenv/plugins/ruby-buil$
PATH=/usr/local/bin:/usr/local/sbin:/Users/name/.rbenv/plugins/ruby-buil$
The file
.bash_profile
has an error on this line:If you look closely quotes are closed, but not opened. It should be like that:
Fix that and see if it works for you now. If not, please update the question with the error and we can continue from there.