Retrieves the value of an environment variable. This function an alternative way of getting environment variables apart from the standard JavaScript environment variable.
The function has the following syntax:
gete(sVar)
This function returns a string holding the current value of the environment variable specified by sVar. If the variable does not exist, an empty string is returned.
Specifies the environment variable.
Example
Retrieve the current path setting:
? gete("PATH");
Copyright © 2013 CA. All rights reserved. |
|