Writing Change default SQLite output mode to table August 30, 2024 · sqliteTIL To set the default output mode to "table" when using sqlite3 you can add .mode table to the ~/.sqliterc file. echo ".mode table" >> ~/.sqliterc