#json #regex #grep #lean #search

app ripjson

A fast and lean way to grep in JSON files

12 releases

0.9.11 Oct 26, 2023
0.9.10 Jul 20, 2023
0.9.9 Feb 7, 2023
0.9.8 Jun 28, 2022
0.9.5 Mar 29, 2019

#648 in Parser implementations

MIT license

10KB
191 lines

ripjson

A fast and lean way to grep in JSON files.

Installation

$ cargo install ripjson

Usage

Usage: rj <regex> <files> [options]

Options:
    -i, --ignore-case   Search case insensitively.
    -s, --sensitive-case
                        Search case sensitively [default].
    -h, --help          Print this help menu.
    -v, --version       Print version.
        --color <WHEN>  Color output.
                        WHEN can be never, always, or auto [default].

Prints all JSON keys and values in <files> whose keys match <regex>.

<regex> specifies for which JSON keys to search for. Separate path elements with a /, e.g. user/name, similar to the JSON pointer syntax specfied in https://tools.ietf.org/html/rfc6901.

Example

$ cat test.json
{
    "name": "John Doe",
    "age": 43,
    "address": {
        "street": "10 Downing Street",
        "city": "London"
    },
    "phones": [
        "+44 1234567",
        "+44 2345678"
    ]
}

$ rj '.*es.*' test.json
address/street = "10 Downing Street"
address/city = "London"
phones = "+44 1234567"
phones = "+44 2345678"

$ rj '.*es.*/cit' test.json
address/city = "London"

Dependencies

~4–16MB
~157K SLoC