quit
quit
[ -no_prompt [ true | false ] ]
[ -no_save [ true | false ] ]
[ -retcode i_value ]
Description
Closes the open cellviews and shuts down the application. By default, a dialog box opens to confirm the exit and choose files to save.
The GUI equivalent for this command is File—Exit.
Arguments
Value Returned
Examples
The following command is the equivalent to the File—Exit menu command. A dialog box appears, requesting confirmation to exit or files to save.
quit
The following command causes Space-based Router to exit immediately, without saving changes.
quit -no_prompt
The following command causes Space-based Router to save changes, then exit immediately.
quit -no_prompt -no_save false
When Space-based Router is run from a script, the following commands cause Space-based Router to save changes, then exit immediately, returning the value from verify_connectivity.
set retcode [verify_connectivity -all]
quit -no_prompt -no_save false -retcode $retcode
Related Topics
Return to top