Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
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