Executes a file present in flash containing one or a list of dispositive commands.
Typical is the request to force execution of the lostreg.stp file.
Syntax |
EXEBAT filename |
---|---|
filename |
Name of the command file to be executed complete with path (path on the CF) |
Notes |
The command file must always end with a carriage return, otherwise the last line is not executed |
Example
from rde3 shell exebat /fa/lostreg.stp |
Example
From program R3 select (rCmdLostreg) case 1 StrCmd = "UAR /FA/LOSTREG.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break case 2 StrCmd = "EXEBAT /FA/LOSTREG.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break case 4 StrCmd = "UAR /FB/RICETTE.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break case 8 StrCmd = "EXEBAT /FB/RICETTE.STP" srAswCmd = command(StrCmd) rCmdLostreg = 0 break default rCmdLostreg = 0 end_select |