jql 0.1.3

A JSON query language CLI tool
jql-0.1.3 is not a library.
Visit the last successful build: jql-5.2.0

JQL

A JSON Query Language CLI tool

Installation 🚀

cargo install jql

Usage 🐨

Want to get the version of a NodeJS package.json file?

jql package.json 'version'

You can chain selectors with . and numbers to access children and indexes in arrays.

jql package.json 'devDependencies.react'

jql package.json 'keywords.3'

Given the following JSON file:

{
    ".valid": 1337
}

You can access the .valid key as follow:

jql package.json '".valid"'

And get some (limited) help for now.

jql --help