chrisbutcher / jsonfilter

Pipe json into the app to get formatted stream out.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jsonfilter

Pipe json into the app to get formatted stream out.

Example

go build main.go
echo "{\"foo\": {\"bar\": [\"baz\"]}}" | ./main
{
  "foo": {
    "bar": [
      "baz"
    ]
  }
}

About

Pipe json into the app to get formatted stream out.


Languages

Language:Go 100.0%