최신 버전의 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 또는 일반적인 명령이 없습니다. 주 디렉토리 중 하나에 도달 할 수있는 유일한 방법은 파인더에서 폴더로 이동 명령을 사용하고 아무 소용이없는 파일을 찾는 것입니다.
모든 것을 끝내기 위해 문제를 일으킬 수있는 파일을 만든 것 같아서 입력 한 .bash_profile을 편집하고 싶었습니다.
sudo nano ./bash_profile
그러면 나노로 저장된 새 파일이 열립니다. 이 후 node.js의 경로에 추가하기 위해 실제 .bash_profile을 열었습니다.
.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
있습니다.