findinjson
v1.0.2
Published
command line tool to find a element piped in json ``` /tmp
Downloads
6
Readme
findinjson
command line tool to find a element piped in json
/tmp
{
"document": {
"children": [
{
"name": "marcell"
},
{
"name": "cruz"
}
]
}
}cat tmp | findinjson -k "document" | findinjson -k "children"
// [{ name: marcell}, { name: cruz }]Instalation
npm i -g findinjson