Run command-line SQLite 3 query and exit
You can use the .exit
command (1), to exit gracefully:
sqlite3 test.db "select * from abc;" ".exit"
Documentation: Command Line Shell For SQLite.
Just include the command in quotes after the database file argument.
For example, the following creates a table called abc
:
sqlite3 test.db 'create table abc (col0 int)'