Quote:
Originally posted by hot_pastrami
Does anybody happen to know how to set an environment variable in Mac OSX? It needs to be available for any program launched through the GUI.
|
I don't know about GUI availability, but setting variables happens thusly in a csh/tcsh (& bash?) environment:
setenv VARIABLENAME variablevalue
eg, "setenv COLORTERM linux"
You can find out more by typing "man setenv" at a command prompt.
If you add this declaration to your .tcshrc or .cshrc file, this variable will be set for you every time you log in.
HTH,
- Pie