Share via


quit (Windows Embedded CE 6.0)

1/6/2010

This command terminates the execution of a script.

Syntax

quit

Parameters

None.

Remarks

A script terminated using the quit command is considered to have successfully executed, as opposed to the abort command, which is treated as an error.

The following code example shows the use of the quit command to terminate execution of a script:

if boolean `pkginstalled MyPackage` == TRUE
  echo "Package already installed"
  quit
endif

See Also

Concepts

Scripting Support Commands