README.md 413 Bytes
Newer Older
Bob Williams's avatar
Bob Williams committed
1
2
# jsontools

3
4
5
6
7
Handy command line tools for dealing with json data.

## Tools

- **pp_json** - pretty prints json
Bob Williams's avatar
Bob Williams committed
8
9
10

## Usage

11
12
##### pp_json - examples

Bob Williams's avatar
Bob Williams committed
13
14
15
16
17
18
19
20
```sh
# curl json data and pretty print the results
curl https://coderwall.com/bobwilliams.json | pp_json

# pretty print the contents of an existing json file
less data.json | pp_json

# json data directly from the command line
21
22
echo '{"b":2, "a":1}' | pp_json
```