Short: Command-line JSON processor Author: mu@netsoc.tcd.ie (Stephen Dolan) Uploader: polluks+aminet sdf org (Stefan Haubenthal) Type: text/misc Version: 1.8.1 Architecture: ppc-morphos URL: https://stedolan.github.io/jq jq - commandline JSON processor [version 1.8.1] Usage: jq [options] [file...] jq [options] --args [strings...] jq [options] --jsonargs [JSON_TEXTS...] jq is a tool for processing JSON inputs, applying the given filter to its JSON text inputs and producing the filter's results as JSON on standard output. The simplest filter is ., which copies jq's input to its output unmodified except for formatting. For more advanced filters see the jq(1) manpage ("man jq") and/or https://jqlang.org/. Example: $ echo '{"foo": 0}' | jq . { "foo": 0 } For listing the command options, use jq --help.