| A statement used to set or modify an environment variable.
Syntax: ENVIRON string-expression ENVIRON "PATH=c:\windows" ENVIRON "TEST what"
Details: String-expression must have the form parametername=text or parametername text Everything to the left of the equal sign or space is assumed to be a parameter, and everything to the right, text. If the parametername has not previously existed in the environment string table, it is appended to the end of the table. If a pametername already exists, it gets deleted and the new parametername is appended to the end of the table. |
|