cybertec-postgresql / today-i-learned-content

This repository contains all the content for Today I learned @Cybertec-postgresql.
https://til.cybertec-postgresql.com/
Other
1 stars 1 forks source link

Pretty Printing JSON #39

Open utterances-bot opened 5 years ago

utterances-bot commented 5 years ago

Pretty Printing JSON

How to pretty print json in different programming languages and in the command line

https://til.cybertec-postgresql.com/post/2019-08-30-Pretty-Printing-JSON/

kmoppel commented 5 years ago
$ echo '{"name": "Lorenz", "has_eyes": true}' | jq
{
  "name": "Lorenz",
  "has_eyes": true
}