quit
The .quit command immediately exits the rsql CLI session. It is functionally equivalent to .exit but does not accept
an exit code. Use this command to leave the CLI at any time.
Usage
.quit
When to use
- Use
.quitto end your session quickly and cleanly. - Useful for interactive sessions or when you want to ensure all resources are released.
Examples
Exit the CLI:
.quit
Troubleshooting
- If the CLI does not exit, check for background operations or pending queries.
- For scripting or automation, prefer
.exitif you need to specify an exit code.
Related
- See also: exit for exiting with a status code.