An open API service indexing awesome lists of open source software.

https://github.com/sachaos/jl

Convert to JSON Lines from STDOUT.
https://github.com/sachaos/jl

jq json tsv unix

Last synced: about 2 months ago
JSON representation

Convert to JSON Lines from STDOUT.

Awesome Lists containing this project

README

          

# jl (JSON by line)

Convert to [JSON Lines](https://jsonlines.org/) from STDOUT.

The main purpose is pre-process output from UNIX command to query by jq.

## Example

```
$ ps aux | jl --header | jq -r ".USER" | sort | uniq
...
root
sachaos
```

## Install

```shell
$ git clone https://github.com/sachaos/jl.git
$ cd jl
$ go install
```