 |
» |
|
|
|
Reexecutes a command from the command stack. Syntax |  |
DO [cmd_string ]
DO [history_index]
|
DO, entered alone, reexecutes the most recent command. Parameters |  |
- cmd_string
Execute the most recent command in the history stack that commences
with cmd_string. For example, do wh could be used to match
the most recent WHILE statement. - history_index
The history stack index of the command that is to be executed. A negative index can be used to specify a command relative to the current
command. For example, -2 implies the command used two commands ago.
Examples |  |
%cmdebug > do w
%cmdebug > wl 2+4
%6
|
Execute the most recent command that started with "w".
|