I want to set an environment variable using setenv:
setenv NODE_ENV localhost
But setenv gives me an error saying the command is not found. Does anyone know how to perform the MAC OSX equivalent of setenv? Thanks!
I want to set an environment variable using setenv:
setenv NODE_ENV localhost
But setenv gives me an error saying the command is not found. Does anyone know how to perform the MAC OSX equivalent of setenv? Thanks!
Best for Mac is:
launchctl setenv NODE_ENV localhost
if you want to make the variable persistent and avoid rebooting.
See:
Are you a Cshell person?
The earlier versions of OS X came with tcsh
as the default shell since OS X is based upon BSD. However, Mac OS X comes with BASH as the user's default shell.
Macs still come with Turbo Csh too and you can make this your default shell if that is your desire. In the terminal, type:
$ chsh -s /bin/tcsh
If you decide you want switch back to BASH:
$ chsh -s /bin/bash
You can see a list of all possible shells in the /etc/shell
file.