modern-unix icon indicating copy to clipboard operation
modern-unix copied to clipboard

Proposal: gron

Open seanjensengrey opened this issue 4 years ago • 1 comments

Gron is a nice json tree to a line per leaf element transformer and back again. It pairs nicely with jq

▶ gron "https://api.github.com/repos/tomnomnom/gron/commits?per_page=1" | fgrep "commit.author" | gron --ungron
[
  {
    "commit": {
      "author": {
        "date": "2016-07-02T10:51:21Z",
        "email": "[email protected]",
        "name": "Tom Hudson"
      }
    }
  }
]

seanjensengrey avatar Dec 10 '21 20:12 seanjensengrey

or you can use fx and not three differenet tools

slavaGanzin avatar Dec 11 '21 13:12 slavaGanzin