about summary refs log tree commit diff
path: root/content/til/json-output-format.md
blob: 5bbc1534d10f25ad2fdd4b52187bc5aff8940a84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
title: "TIL: Formatting JSON Output"
date: 2021-04-27T17:06:51+07:00
translationKey: json-output-format
tags: [bash, cli, json, trick]
---

TIL: Syntax-highlighted JSON output

If you have some command that return (long) JSON, you can view it formatted
with color with: 

```bash
<command> | jq -C | less -r
```