1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/jq.md
mrz-secops-offsec 05294eb4a8
jq: add single binary version (#13265)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: spageektti <git@spageektti.cc>
2024-07-14 01:47:51 +02:00

992 B

jq

A JSON processor that uses a domain-specific language (DSL). More information: https://jqlang.github.io/jq/manual/.

  • Execute a specific expression (print a colored and formatted JSON output):

{{cat path/to/file.json}} | jq '.'

  • Execute a specific expression only using the jq binary (print a colored and formatted JSON output):

jq '.' {{/path/to/file.json}}

  • Execute a specific script:

{{cat path/to/file.json}} | jq --from-file {{path/to/script.jq}}

  • Pass specific arguments:

{{cat path/to/file.json}} | jq {{--arg "name1" "value1" --arg "name2" "value2" ...}} '{{. + $ARGS.named}}'

  • Print specific keys:

{{cat path/to/file.json}} | jq '{{.key1, .key2, ...}}'

  • Print specific array items:

{{cat path/to/file.json}} | jq '{{.[index1], .[index2], ...}}'

  • Print all array/object values:

{{cat path/to/file.json}} | jq '.[]'

  • Add/remove specific keys:

{{cat path/to/file.json}} | jq '. {{+|-}} {{{"key1": "value1", "key2": "value2", ...}}}'