JQ
Command Line JSON Processing tools
JQ Cookbook: https://github.com/stedolan/jq/wiki/Cookbook
-
JQ Template Engine Tutorial: https://stedolan.github.io/jq/tutorial/ User Manual: https://stedolan.github.io/jq/manual/ Language Description: https://github.com/stedolan/jq/wiki/jq-Language-Description
-
Use FZF to live test JQ Queries with Preview Window: Julia Evans: FZF + JQ - Mastodon
echo '' | fzf --preview-window up --preview 'jq {q} < .obsidian/workspace.json
- display specific fields from object array
... | jq -c ".issues[] | { key: .key, summary: .fields.summary }"