Reputation: 303
Whenever I start up Terminal on my Macbook Air, I get this message:
-bash: ≈: command not found
How do I fix this error? I'm running Mavericks version 10.9.4 if that helps at all.
EDIT: Fixed this error by using the bash -x method, found out it was a random '≈' character left in ~/.profile that needed to be deleted. Thanks for the answers :)
Upvotes: 0
Views: 3793
Reputation: 560
I definitely agree with Barmar, there is something in your bash startup scripts. There is not a great way to do this, but here is the protocol to remedy it.
control + C
if it is hung. Then do a source ~/.bash_profile
and see if you get that same error. cp ~/.bash_profile bashprofile.txt
command + slash
. source ~/.bash_profile
and see if the error still prints. Upvotes: 1