about summary refs log tree commit diff
path: root/content/notes/json-output-format.md
diff options
context:
space:
mode:
authorNgô Ngọc Đức Huy <huyngo@disroot.org>2025-02-24 17:18:18 +0700
committerNgô Ngọc Đức Huy <huyngo@disroot.org>2025-12-07 23:56:37 +0700
commit4d08cadc4f6e732dcce3213eb87166075a99cd53 (patch)
tree8845efa44e1bf8cebcaed7bde2fc12817f08a849 /content/notes/json-output-format.md
parent55297f3b0adcaabb876c18074be73238a4a53619 (diff)
downloadblog-4d08cadc4f6e732dcce3213eb87166075a99cd53.tar.gz
Remove translations
Diffstat (limited to 'content/notes/json-output-format.md')
-rw-r--r--content/notes/json-output-format.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/content/notes/json-output-format.md b/content/notes/json-output-format.md
new file mode 100644
index 0000000..e22cfbf
--- /dev/null
+++ b/content/notes/json-output-format.md
@@ -0,0 +1,16 @@
+---
+title: "Formatting JSON Output with jq"
+date: 2021-04-27T17:06:51+07:00
+translationKey: json-output-format
+categories: [software, guide]
+tags: [bash, cli, json, jq, less]
+---
+
+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
+```