我正在运行最新版本的Mountain Lion的MacBook Pro上。
我真的需要一些帮助,我已经设法解决了一些如何损坏.bash_profile的问题(我认为),因此,每次打开终端时,都会出现以下错误。
-bash: export: `/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/go/bin': not a valid identifier
-bash: export: `/Users/rob/Applications/sbt/bin:': not a valid identifier
env: bash: No such file or directory
env: bash: No such file or directory
env: bash: No such file or directory
env: bash: No such file or directory
env: bash: No such file or directory
-bash: tar: command not found
-bash: grep: command not found
-bash: cat: command not found
-bash: find: command not found
我不确定发生了什么,我没有sudo,cd或任何普通命令。我能够进入任何主目录的唯一方法是通过finder中的go to folder命令并尝试查找该文件无济于事。
最重要的是,我想我创建了一个可能导致此问题的文件,我想编辑.bash_profile,因此输入
sudo nano ./bash_profile
这会在nano中打开一个新文件,然后我认为该文件已保存。之后,我打开了真正的.bash_profile,以添加node.js的路径。
如果我可以进入.bash_profile,我想我可以使其恢复正常,但找不到,我应该重新安装bash吗?如果是这样,我将如何在Mac上执行此操作,我尝试使用
brew install bash
我得到了
-bash: brew: command not found
-bash: export: '/Users/rob/Applications/sbt/bin:': not a valid identifier
已经消失了。我正在努力的一件事是可能存储了第一行,我查看了我的.bash_profile,.profile和.bashrc,但一无所获。
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/go/bin
到了.bash_profile中,它似乎已经修复了bash,但仍然出现此错误 -bash: export: '/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/go/bin': not a valid identifier
任何想法?
PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/go/bin:$PATH" # Make sure to use double quotes not single quotes
并换行export PATH
。
bash
。