Returns a hashtable object containing any environment variables or returns the value associated with the specified environment variable.
Syntax
Parameters
Returns
hashtable
|
the hashtable object containing environment variables.
|
Example
env = env( )
Syntax
env( name )
name.env( name )
Parameters
name
|
the name of the environment variable.
|
Returns
string
|
the value associated with the specified environment variable.
null if the specified environment variable does not exist.
|
Example
p = env( "PATH" )
|