Reputation: 4391
I'm trying to install uncrustify https://github.com/tonyarnold/Xcode-4-Uncrustify-Automator-Services
However, I don't know what $PATH is or how to set it. Could someone help me out. I did install homebrew but I'm a little lost as to how to proceed
Upvotes: 1
Views: 1193
Reputation: 672
PATH is an environment variable on various operation system, specifying a set of directories where executable programs are located. (See more on http://en.wikipedia.org/wiki/PATH_(variable) )
On MAC OS X, you can easily check the PATH settings by following steps:
Now, do you know where did you install homebrew? If yes, check that directory is listed in your PATH environment variable. Another easy way to check if your executable is in PATH or not by following steps...
How to add PATH
There are several ways to do so in MAC OS X.
Upvotes: 3
Reputation: 133118
Adding to $PATH
http://home.ubalt.edu/abento/linux/terminal/addtopath.html
Upvotes: 0