Computing (FOLDOC) dictionary
Jump to user comments
programming, operating system A
variable that is bound in
the current environment. When evaluating an expression in
some environment, the evaluation of a variable consists of
looking up its name in the environment and substituting its
value.
Most programming languages have some concept of an environment
slightly different from other contexts. In shell scripts,
variable which contains the local time zone. The variable
called "SHELL" specifies the type of shell being used.
discover things about the environment they are operating in.
Environment variables can be changed or created by the
useror a program.
To see a list of environment variables type "setenv" at the
languages, the environment is extended with new bindings when
(1999-01-26)