JQ
Command Line JSON Processingtools
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
- display specific fields from object array
... | jq -c ".issues[] | { key: .key, summary: .fields.summary }"