gron icon indicating copy to clipboard operation
gron copied to clipboard

Make JSON greppable!

Results 69 gron issues
Sort by recently updated
recently updated
newest added

In [v0.7.1](https://github.com/tomnomnom/gron/commit/badf401da553eb41b7ffde4be6a64809ed0ed846#diff-e3b83f8b89d67c5106cf02b79df582265e774eb93bbffb7e2ca26f05c73776dfL55) the `-ldflags "-X main.gronVersion=${VERSION}"` argument to the `go build` cmd has been removed. This PR reverts this change and re-introduces the flag to show the correct version string...

Yesterday I was testing intel_gpu_top utility in linux which gives some information & has an option to output json with -J flag I wanted to write a script using this...

I forgot the name of this tool, and tried searching 'topic: json' and 'topic: cli', maybe those would help discoverability?

This PR adds support for using a proxy when calling `gron `. It allows to configure a proxy through the environment variables `http_proxy` and `https_proxy` and also respects values in...

Hello! I need to enable a proxy to contact the global internet, using the variables `http_proxy` `https_proxy` & `no_proxy` (they are described in https://curl.se/docs/manual.html#environment-variables and usually used in other programs...

I think the binaries for Linux x86 are broken: ``` bash-5.0# curl -LO https://github.com/tomnomnom/gron/releases/download/v0.6.0/gron-linux-amd64-0.6.0.tgz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent...

This PR adds the `arm` build target. This fixes #95. Currently the following build targets are available with go v1.18. Please notice that `darwin/arm` is not a valid build target,...

Hi, Would it possible to special-case `new Array` / `new Array()` and `new Object`/`new Object()` to respectively be equal to `[]` and `{}`? I'm just using a grep pre-pass for...

According to the `gron` documentation, "To preserve array keys, arrays are padded with null when values are missing". For example, using the test data in the Git repo: ``` $...