Solstice NFS Client 3.2 User's Guide for Microsoft Windows 95 and Windows NT

GOTO label

Jumps to a different location within the current SNC script. The label is a string. The location to jump to is denoted by :label on a line by itself.

Example:

This example goes to the line with the continue label if ERRORLEVEL is 0.

	IF ERRORLEVEL 0 GOTO continue
	ECHO "help, an error occurred!"
	EXIT 1
	:continue
	ECHO "Success!"