From c2c189f3e6e900e5f3d35df9a9b9d033448baff6 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 22 Oct 2019 11:14:19 -0700 Subject: [PATCH] readme update --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 622f4e12..2d03da8c 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # JC JSON CLI output utility -`jc` is used to JSONify the output of many standard linux cli tools for easier parsing in scripts. Parsers for `ls`, `ifconfig`, `ps`, `route`, and `netstat` are currently included and more can be added via modules. +`jc` is used to JSONify the output of many standard linux cli tools for easier parsing in scripts. See the Parsers section for supported commands. This allows further command line processing of output with tools like `jq` simply by piping commands: @@ -60,6 +60,9 @@ jc [parser] [options] `jc` accepts piped input from `STDIN` and outputs a JSON representation of the previous command's output to `STDOUT`. The JSON output can be compact or pretty formatted. Parsers: +- `--df` enables the `df` parser +- `--env` enables the `env` parser +- `--free` enables the `free` parser - `--ifconfig` enables the `ifconfig` parser - `--ls` enables the `ls` parser - `--netstat` enables the `netstat` parser