LISST - 25 User’s Guide
19
EB
Exit Batch file
Syntax:
EB or eb
Description:
Batch file command: Enter as last line of a batch file.
Example:
Cautions:
Only functions within batch files.
GT
Go to batch command line x, x=1 to 25
Syntax:
GT x or gt x
Description:
Batch file command: Transfers control to batch file command specified by x.
Example:
Cautions:
Only functions within batch files.
LB
Load batch command line x with cmd string, x=1 to 25
Syntax:
LB x command or lb x command
Description:
Loads batch file memory with desired command.
Example:
Input: LB 01 GR 100
Output: Batch file # 1: GR 100
Cautions:
Batch file line number must be two digits and command must included
required input values.
RP and ER
Repeat code between RP and ER (end repeat) commands
Syntax:
RP x or rp x, and ER or er.
Description:
Batch file command: A simple loop command for batch files. Executes the
lines between the RP and ER lines.
Example:
Batch file lines: RP 5
GR 100
WT 300
ER
The GR and WT commands will be executed 5 times.