Joshua Soileau
Joshua Soileau

Reputation: 3015

ZSH Mac Mavericks $PATH variable is corrupt

For some reason, I am getting all sorts of weird behavior in terminal, I think it's related to my $PATH variable.

If I run this command:

echo $PATH

it outputs this

/Applications/MAMP/bin/php/php5.4.10/bin:/Applications/MAMP/bin/php/php5.4.10/bin:/Applications/MAMP/bin/php/php5.4.10/bin:/Applications/MAMP/bin/php/php5.4.10/bin:/Applications/MAMP/bin/php/php5.4.10/bin...........

How do I reset it back to what it should be?

Upvotes: 0

Views: 561

Answers (1)

Donovan
Donovan

Reputation: 15917

It sounds like your MAMP install has added something to your login script(s), which is adding itself to your PATH repeatedly. Check your ~/.zshrc file for suspicious lines.

Upvotes: 1

Related Questions