每当我在Macbook Air上启动终端时,我收到此消息:
-bash: ≈: command not found
如何修复此错误?我正在运行Mavericks版本10.9.4,如果这有帮助的话。
编辑:使用bash -x方法修复了这个错误,发现它是〜/ .profile中需要删除的随机'≈'字符。谢谢你的答案:)答案 0 :(得分:1)
要调试你可以试试这个:
bash -x -l
(可能不需要-l
。)
答案 1 :(得分:1)
我绝对同意Barmar,你的bash启动脚本中有一些东西。 没有一个很好的方法可以做到这一点,但这是解决它的协议。
control + C
,请首先使用source ~/.bash_profile
终止该进程,以确认它是您的bash配置文件。然后执行cp ~/.bash_profile bashprofile.txt
并查看是否出现相同的错误。 command + slash
source ~/.bash_profile
。