Go to: Synopsis. Return value. Flags. Python examples.

Synopsis

quit([abort=boolean], [exitCode=uint], [force=boolean])

Note: Strings representing object names and arguments must be separated by commas. This is not depicted in the synopsis.

quit is undoable, NOT queryable, and NOT editable.

This command is used to exit the application.

Return value

None

Flags

abort, exitCode, force
Long name (short name) Argument types Properties
force(f) boolean create
If specified, this flag will force a quit without saving or prompting for saving changes. Use at your own risk.
exitCode(ec) uint create
Specifies the exit code to be returned once the application exits. The default exit code is 0.
abort(a) boolean create
Will quit without saving like -force, but will also prevent preferences/hotkeys/colors from being saved. Use at your own risk.

Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can have multiple arguments, passed either as a tuple or a list.

Python examples

import maya.cmds as cmds

cmds.quit()
cmds.quit(force=True)