jaq

A faster, simpler JQ clone focused on correctness and speed

brewmacoslinux
Try with needOr install directly
Source

About

JQ clone focussed on correctness, speed, and simplicity

Commands

jaq

Examples

Pretty-print JSON from a file$ jaq '.' input.json
Extract a specific field from JSON$ echo '{"name": "John", "age": 30}' | jaq '.name'
Filter array elements matching a condition$ jaq '.[] | select(.age > 25)' users.json