Jq: Difference between revisions

From Omnia
Jump to navigation Jump to search
(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/")
(No difference)

Revision as of 20:14, 7 June 2024

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/