Jq

From Omnia
Revision as of 20:14, 7 June 2024 by Kenneth (talk | contribs) (Created page with "== jq == jq https://jqlang.github.io/jq/ jq is a lightweight and flexible command-line JSON processor. jq is like sed for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. == pretty print json == echo '{"foo": "lorem", "bar": "ipsum"}' | jq == tutorial == jq tutorial https://jqlang.github.io/jq/tutorial/")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

jq

jq
https://jqlang.github.io/jq/
jq is a lightweight and flexible command-line JSON processor.
jq is like sed for JSON data - you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text.

pretty print json

echo '{"foo": "lorem", "bar": "ipsum"}' | jq

tutorial

jq tutorial
https://jqlang.github.io/jq/tutorial/