A command-line JSON processor using Python syntax. More information: https://github.com/kellyjonbrazil/jello.
stdin
to stdout
:cat file.json | jello
stdin
to stdout
(useful for grep):cat file.json | jello -s
stdin
to stdout
:cat file.json | jello -l
stdin
to stdout
:cat file.json | jello _[0]
stdin
to stdout
:cat file.json | jello '[i.key_name for i in _]'
key_name1
and key_name2
):cat file.json | jello '{"key1": _.key_name1, "key_name": _.key_name2}'
cat file.json | jello -r '"some text: " + _.key_name'