CA Service Management

 View Only

CA SDM::.SPEL::. getenv 

Feb 23, 2017 12:36 PM

getenv

Method to return a string within a environment variable.

string getenv(string str)

It can be used to retrieve a variable that has been previously stored by the setenv function.
A variable defined at run time with the setenv function can be accessed at any time inside or outside the context of the function.

eg.

setenv("myVar", "myValue"); // Store 'myvalue' in environment variable 'myVar'
printf("%s\n", getenv("myVar")); // Returns 'myValue'
printf("%s\n", getenv("COMPUTERNAME")); // Returns computer name 'SERVERSDM1'
printf("%s\n", getenv("NX_ROOT")); // Returns $NX_ROOT path

Statistics
0 Favorited
8 Views
0 Files
0 Shares
0 Downloads

Tags and Keywords

Related Entries and Links

No Related Resource entered.