今天修改tomcat的环境配置的时候,不知道哪里出了错,竟然所有的-bash基本命令都失败了。
比如:
-bash: ls :command not found
-bash:open:command not found
找了下苹果技术论坛的帖子,终于安心了:
1.在terminal里面输入:
直接回车即可。
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin"
然后命令暂时可以用了,
2.
赶紧用open -e ~/.bash_profile在文本编辑器里面打开.bash_profile文件:
3.
更改PATH环境变量设置,添加上这一行,
export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin"
再保存就没问题了。