mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-15 01:24:29 +02:00
add note that the streaming parser outputs JSON Lines
This commit is contained in:
@ -3,7 +3,9 @@
|
|||||||
# jc.parsers.ls_s
|
# jc.parsers.ls_s
|
||||||
jc - JSON CLI output utility `ls` and `vdir` command output streaming parser
|
jc - JSON CLI output utility `ls` and `vdir` command output streaming parser
|
||||||
|
|
||||||
This streaming parser requires the `-l` option to be used on `ls`. If there are newline characters in the filename, then make sure to use the `-b` option on `ls`.
|
> This streaming parser outputs JSON Lines
|
||||||
|
|
||||||
|
Requires the `-l` option to be used on `ls`. If there are newline characters in the filename, then make sure to use the `-b` option on `ls`.
|
||||||
|
|
||||||
The `jc` `-qq` option can be used to ignore parsing errors. (e.g. filenames with newline characters, but `-b` was not used)
|
The `jc` `-qq` option can be used to ignore parsing errors. (e.g. filenames with newline characters, but `-b` was not used)
|
||||||
|
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
# jc.parsers.ping_s
|
# jc.parsers.ping_s
|
||||||
jc - JSON CLI output utility `ping` command output streaming parser
|
jc - JSON CLI output utility `ping` command output streaming parser
|
||||||
|
|
||||||
|
> This streaming parser outputs JSON Lines
|
||||||
|
|
||||||
Supports `ping` and `ping6` output.
|
Supports `ping` and `ping6` output.
|
||||||
|
|
||||||
Usage (cli):
|
Usage (cli):
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
# jc.parsers.vmstat_s
|
# jc.parsers.vmstat_s
|
||||||
jc - JSON CLI output utility `vmstat` command output streaming parser
|
jc - JSON CLI output utility `vmstat` command output streaming parser
|
||||||
|
|
||||||
|
> This streaming parser outputs JSON Lines
|
||||||
|
|
||||||
Options supported: `-a`, `-w`, `-d`, `-t`
|
Options supported: `-a`, `-w`, `-d`, `-t`
|
||||||
|
|
||||||
The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on)
|
The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on)
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
"""jc - JSON CLI output utility `foo` command output streaming parser
|
"""jc - JSON CLI output utility `foo` command output streaming parser
|
||||||
|
|
||||||
|
> This streaming parser outputs JSON Lines
|
||||||
|
|
||||||
<<Short foo description and caveats>>
|
<<Short foo description and caveats>>
|
||||||
|
|
||||||
Usage (cli):
|
Usage (cli):
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
"""jc - JSON CLI output utility `ls` and `vdir` command output streaming parser
|
"""jc - JSON CLI output utility `ls` and `vdir` command output streaming parser
|
||||||
|
|
||||||
This streaming parser requires the `-l` option to be used on `ls`. If there are newline characters in the filename, then make sure to use the `-b` option on `ls`.
|
> This streaming parser outputs JSON Lines
|
||||||
|
|
||||||
|
Requires the `-l` option to be used on `ls`. If there are newline characters in the filename, then make sure to use the `-b` option on `ls`.
|
||||||
|
|
||||||
The `jc` `-qq` option can be used to ignore parsing errors. (e.g. filenames with newline characters, but `-b` was not used)
|
The `jc` `-qq` option can be used to ignore parsing errors. (e.g. filenames with newline characters, but `-b` was not used)
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
"""jc - JSON CLI output utility `ping` command output streaming parser
|
"""jc - JSON CLI output utility `ping` command output streaming parser
|
||||||
|
|
||||||
|
> This streaming parser outputs JSON Lines
|
||||||
|
|
||||||
Supports `ping` and `ping6` output.
|
Supports `ping` and `ping6` output.
|
||||||
|
|
||||||
Usage (cli):
|
Usage (cli):
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
"""jc - JSON CLI output utility `vmstat` command output streaming parser
|
"""jc - JSON CLI output utility `vmstat` command output streaming parser
|
||||||
|
|
||||||
|
> This streaming parser outputs JSON Lines
|
||||||
|
|
||||||
Options supported: `-a`, `-w`, `-d`, `-t`
|
Options supported: `-a`, `-w`, `-d`, `-t`
|
||||||
|
|
||||||
The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on)
|
The `epoch` calculated timestamp field is naive (i.e. based on the local time of the system the parser is run on)
|
||||||
|
2
man/jc.1
2
man/jc.1
@ -1,4 +1,4 @@
|
|||||||
.TH jc 1 2021-09-26 1.17.0 "JSON CLI output utility"
|
.TH jc 1 2021-09-27 1.17.0 "JSON CLI output utility"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
jc \- JSONifies the output of many CLI tools and file-types
|
jc \- JSONifies the output of many CLI tools and file-types
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
Reference in New Issue
Block a user