SysLib.startCmd function

SysLib.startCmd runs a system command asynchronously and does not return a value.

Package

eglx.lang

Syntax
static function startCmd(commandString string in);
commandString
Identifies the code to invoke.
Example use
The system command that is run must be visible to the code that invokes the function. For example, consider the following statement:
SysLib.callCmd("mySpecialProgram.exe")
The program "mySpecialProgram.exe" must be in a directory to which the PATH variable points. You can also specify the complete directory location, as in the following example:
SysLib.callCmd("program files/myWork/mySpecialProgram.exe")
Comments

To initiate a system command synchronously, invoke SysLib.callCmd.

Compatibility

Table 1. Compatibility
Target Issue
Java No issues.
JavaScript The SysLib.startCmd function is not supported.