aboutsummaryrefslogtreecommitdiff
path: root/content/blog/miscellaneous/sqlite-pretty-print.md
diff options
context:
space:
mode:
authorJulien Dessaux2021-03-12 18:12:41 +0100
committerJulien Dessaux2021-03-12 18:13:45 +0100
commited8e2b9e9ed67097d4fdc7913df1c6cd2d96d3f7 (patch)
treecd93f66cd66f8ca6efe91882d8a46ca6b09bdc72 /content/blog/miscellaneous/sqlite-pretty-print.md
parentImproved home speech (diff)
downloadwww-ed8e2b9e9ed67097d4fdc7913df1c6cd2d96d3f7.tar.gz
www-ed8e2b9e9ed67097d4fdc7913df1c6cd2d96d3f7.tar.bz2
www-ed8e2b9e9ed67097d4fdc7913df1c6cd2d96d3f7.zip
Some more articles reformatting
Diffstat (limited to 'content/blog/miscellaneous/sqlite-pretty-print.md')
-rw-r--r--content/blog/miscellaneous/sqlite-pretty-print.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/blog/miscellaneous/sqlite-pretty-print.md b/content/blog/miscellaneous/sqlite-pretty-print.md
index 08bcec6..bc7ea02 100644
--- a/content/blog/miscellaneous/sqlite-pretty-print.md
+++ b/content/blog/miscellaneous/sqlite-pretty-print.md
@@ -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 >}}
-