Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bunji2/json_find

JSON Find
https://github.com/bunji2/json_find

golang json

Last synced: about 14 hours ago
JSON representation

JSON Find

Awesome Lists containing this project

README

        

# json_find

## Usage: json_find json_file pattern

## Sample:

```
% cat file.json
[
{"Name": "Platypus", "Order": "Monotremata"},
{"Name": "Quoll", "Order": "Dasyuromorphia"}
]

% json_find file.json #0.Name
Platypus

% json_find file.json #1.Order
Dasyuromorphia

% json_find file.json #2.Name
(not found)
```