This article will cover the syntax of the ‘execute’ regular script statement.
The execute statement allows other programs to be ran while the load script is executing.
Statement syntax
Execute commandline;
Commandline | This is a string to be read by the operating system as a command. |
Example
In this example, a python file is executed during the script reload.
Execute C:Program FilesWorktestFile.py;
Result
The python file is executed.