1

In OS X how do I add an environment variable which loads at startup time?

yazz.com
  • 3,361

1 Answers1

2

You can edit the file at /etc/rc.common

Add a line like the following:

export NEWVARIABLE="my new environment variable"
Kousha
  • 274