A JSON Query Language CLI tool
The core philosophy of jql: - Keep its features as simple as possible - Avoid redunduncy - Provide meaningful error messages - Eat JSON as input, process, output JSON back
sh
cargo install jql
If you find some of the following examples confusing, please have a look at The JavaScript Object Notation (JSON) Data Interchange Format.
json
"This is a valid JSON text with one value"
sh
jql example.json '.'
json
"This is a valid JSON text with one value"
json
{
"some": {
"property": "yay!"
}
}
sh
jql example.json '"some"."property"'
json
"yay!"
json
{
"primes": [7, 11, 13]
}
sh
jql example.json '"primes".[0]'
json
7
Please note that the following is also valid:
sh
jql example.json '"primes"[0]"'
json
7
json
{
"cats": [{ "first": "Pixie" }, { "second": "Kitkat" }, { "third": "Misty" }]
}
sh
jql example.json '"cats".[1:2]'
json
[
{
"second": "Kitkat"
},
{
"third": "Misty"
}
]
Please note that you can reverse it:
sh
jql example.json '"cats".[2:1]'
json
[
{
"third": "Misty"
},
{
"second": "Kitkat"
}
]
Bonus, you can do it again to get it back:
sh
jql example.json '"cats".[2:1].[1:0]'
json
[
{
"second": "Kitkat"
},
{
"third": "Misty"
}
]
Please note that you can still access the children:
sh
jql example.json '"cats".[2:1].[0]."third"'
json
"Misty"
json
{
"one": [1, 2, 3],
"two": 2,
"three": 3
}
sh
jql example.json '"one".[2:0],"two","three"'
json
[
[
3,
2,
1
],
2,
3
]
json
{
"laptops": [
{
"laptop": {
"brand": "Apple",
"options": ["a", "b", "c"]
}
},
{
"laptop": {
"brand": "Asus",
"options": ["d", "e", "f"]
}
}
]
}
sh
jql example.json '"laptops"|"laptop"'
json
[
{
"brand": "Apple",
"options": ["a", "b", "c"]
},
{
"brand": "Asus",
"options": ["d", "e", "f"]
}
]
You can also combine a filter with a child selection, a multi-selection and ranges at the same time:
sh
jql example.json '"laptops"|"laptop"."brand"'
json
[
"Apple",
"Asus"
]
sh
jql example.json '"laptops".[1:0]|"laptop"."brand","laptops"|"laptop"."brand"'
json
[
[
"Asus",
"Apple"
],
[
"Apple",
"Asus"
]
]
Please note that you can combine filters to achieve the same result:
sh
jql example.json '"laptops".[1:0]|"laptop"|"brand","laptops"|"laptop"|"brand"'
json
[
"Apple",
"Asus"
]
json
{
"dna": [[[[["c", "a", "c"]]]], "g", "t", [[["a", ["t"]]]]]
}
sh
jql example.json '.."dna"'
json
[
"c",
"a",
"c",
"g",
"t",
"a",
"t"
]
json
{
".valid": 1337,
"": "yeah!",
"\"": "yup, valid too!"
}
sh
jql example.json '".valid"'
json
1337
sh
jql example.json '""'
json
"yeah!"
sh
jql example.json '"\""'
json
"yup, valid too!"
sh
jql input.json 'foo.bar' > output.json
sh
jql -h
jql --help
sh
jql -V
jql --version
sh
jql -i example.json 'some.selector'
jql --inline example.json 'some.selector'