Goto
From Wiki
Synopsis
goto {label name}
Description
The goto command moves the execution to another part of the script. The destination point is given by a label.
Note: |
Example
loop: if %donotloop goto exit goto loop exit:
See also
Main Page | Documentation |