Some more articles reformatting

This commit is contained in:
Julien Dessaux 2021-03-12 18:12:41 +01:00
parent af1088fca1
commit ed8e2b9e9e
31 changed files with 174 additions and 102 deletions

View file

@ -1,16 +1,16 @@
---
title: "Sqlite pretty print"
linkTitle: "Sqlite pretty print"
date: 2019-06-19
description: >
Sqlite pretty print
description: How to pretty print your Sqlite output
tags:
- SQLite
---
- In ~/.sqliterc :
## The solution
In `~/.sqliterc` add the following :
{{< highlight sh >}}
.mode column
.headers on
.separator ROW "\n"
.nullvalue NULL
{{< /highlight >}}