DEBUG WHILE — VMS 5.0
The WHILE command provides a way of iteratively executing
debugger commands. As long as the language expression given as
the WHILE clause is true, the debugger command list given in the
DO clause is executed.
Format:
WHILE lang-exp DO (debug-cmd-list)
Additional information available:
Example
To repeatedly STEP until the variable X is not equal to zero:
DBG> WHILE (X .EQ. 0) DO (STEP/SILENT/INTO)
Parameters
lang-exp
Any expression in the currently set language which evaluates to
TRUE or FALSE.
debug-cmd-list
A single debugger command, or a sequence of debugger commands
separated by semicolons.