The MosProcessExecuteResult object contains properties representing the result of running an external program.
Properties
Name |
Description |
hasExited |
Indicates completion of program execution or exceeding the waiting time. True – the program is complete, False – the waiting time is exceeded. |
exitCode |
Contains the program exit code. Note that if the time of waiting for program execution was exceeded, exitCode will be -1. |
output |
Contains the standard output of the program if it has been completed. |
Examples
The following example shows an expression that returns the hostname of the host where the server is deployed using the standard output of the hostname command:
var result = MosProcess.runAndWait('hostname', '', 5000);
return result.output;