私はMacBook Proで、Mountain Lionの最新バージョンを実行しています。
私は本当に助けが必要です..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の[フォルダへ移動]コマンドを使用して、使用できないファイルを見つけようとすることです。
さらに、問題を引き起こす可能性のあるファイルを作成したと思うので、.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
はなくなっています。私が苦労していることの1つは、最初の行が格納される可能性があることです。
/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
ます。