env <assign> {,<assign> ... }
Declare or redefine an operating system environment variable and give it a value.
<assign>
<word> = <string>
<word>
The name of the environment variable (unquoted).
<value>
The value in the form of a string expression.
None
A null string value will make the variable undefined.
The variable name will be converted to upper case before being conveyed to the operating system, but the name may be accessed in upper and lower case within other commands.
When used within file pathnames, an environment name should be preceded by a $.
env mylib = '/usr/applic'; # Definition. type $mylib/read.me; # Example usage
Functions: |
envval (string) |