The execute Statement
The ZKM Script execute statement executes simple operating system commands. Any error output is written to standard err and
the Zelix KlassMaster log. Similarly, any normal output is written to standard out and to the Zelix KlassMaster log.
Examples
execute "mkdir temp";
execute "copy *.txt temp";
execute "prepare.bat";
"execute" "\"" command "\"" ";"
where command is the operating system command complete with simple parameters.
You can embed quotes within the command by using two consecutive quotes (ie. "") for each quote to be embedded.
|