Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bunji2/json_find
- Owner: bunji2
- Created: 2018-10-08T13:34:39.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-09T15:16:49.000Z (almost 5 years ago)
- Last Synced: 2023-03-02T00:25:44.100Z (over 1 year ago)
- Topics: golang, json
- Language: Go
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```