--- 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 | jq -C | less -r ```