Setting environment variables on UNIX

On UNIX™ platforms, environment variables can be set through the following methods, depending on to the command interpreter used:

Bourne shell:
VAR=value; export VAR
Korn shell:
export VAR=value
C shell:
setenv VAR=value

For more details, refer to the documentation for your UNIX system.