tldr/pages/common/jq.md

33 lines
892 B
Markdown
Raw Normal View History

2016-12-21 23:40:12 +00:00
# jq
> A command-line JSON processor that uses a domain-specific language.
> More information: <https://stedolan.github.io/jq/manual/>.
2016-12-21 23:40:12 +00:00
- Execute the specified expression (print a colored and formatted json):
2016-12-21 23:40:12 +00:00
`{{cat path/to/file.json}} | jq '{{.}}'`
2016-12-21 23:40:12 +00:00
- Execute the specified script:
2016-12-21 23:40:12 +00:00
`{{cat path/to/file.json}} | jq --from-file {{path/to/script.jq}}'`
2016-12-21 23:40:12 +00:00
- Pass the specifed arguments:
`{{cat path/to/file.json}} | jq {{--arg "name1" "value1" --arg "name2" "value2" ...}} '{{. + $ARGS.named}}'`
- Print the specifed keys:
2016-12-21 23:40:12 +00:00
`{{cat path/to/file.json}} | jq '{{.key1, .key2, ...}}'`
2016-12-21 23:40:12 +00:00
- Print the specifed array items:
2016-12-21 23:40:12 +00:00
`{{cat path/to/file.json}} | jq '{{.[index1], .[index2], ...}}'`
2016-12-21 23:40:12 +00:00
- Print all array items/object keys:
2016-12-21 23:40:12 +00:00
`{{cat path/to/file.json}} | jq '.[]'`
- Add/remove the specified keys:
`{{cat path/to/file.json}} | jq '{{.}} {{+|-}} {{{"key1": "value1", "key2": "value2", ...}}}'`