mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-15 01:24:29 +02:00
doc update
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
20221213 v1.22.3
|
20221216 v1.22.3
|
||||||
- Add Common Log Format and Combined Log Format file parser (standard and streaming)
|
- Add Common Log Format and Combined Log Format file parser (standard and streaming)
|
||||||
- Add PostgreSQL password file parser
|
- Add PostgreSQL password file parser
|
||||||
- Add openvpn-status.log file parser
|
- Add openvpn-status.log file parser
|
||||||
|
@ -161,7 +161,7 @@ option.
|
|||||||
| ` --asciitable` | ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable) |
|
| ` --asciitable` | ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable) |
|
||||||
| ` --asciitable-m` | multi-line ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable_m) |
|
| ` --asciitable-m` | multi-line ASCII and Unicode table parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable_m) |
|
||||||
| ` --blkid` | `blkid` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/blkid) |
|
| ` --blkid` | `blkid` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/blkid) |
|
||||||
| ` --cbt` | `cbt` (Google Big Table) command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/cbt) |
|
| ` --cbt` | `cbt` (Google Bigtable) command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/cbt) |
|
||||||
| ` --cef` | CEF string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/cef) |
|
| ` --cef` | CEF string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/cef) |
|
||||||
| ` --cef-s` | CEF string streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/cef_s) |
|
| ` --cef-s` | CEF string streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/cef_s) |
|
||||||
| ` --chage` | `chage --list` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/chage) |
|
| ` --chage` | `chage --list` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/chage) |
|
||||||
|
@ -110,7 +110,7 @@ _jc() {
|
|||||||
'--asciitable:ASCII and Unicode table parser'
|
'--asciitable:ASCII and Unicode table parser'
|
||||||
'--asciitable-m:multi-line ASCII and Unicode table parser'
|
'--asciitable-m:multi-line ASCII and Unicode table parser'
|
||||||
'--blkid:`blkid` command parser'
|
'--blkid:`blkid` command parser'
|
||||||
'--cbt:`cbt` (Google Big Table) command parser'
|
'--cbt:`cbt` (Google Bigtable) command parser'
|
||||||
'--cef:CEF string parser'
|
'--cef:CEF string parser'
|
||||||
'--cef-s:CEF string streaming parser'
|
'--cef-s:CEF string streaming parser'
|
||||||
'--chage:`chage --list` command parser'
|
'--chage:`chage --list` command parser'
|
||||||
|
@ -3,10 +3,10 @@
|
|||||||
|
|
||||||
# jc.parsers.cbt
|
# jc.parsers.cbt
|
||||||
|
|
||||||
jc - JSON Convert `cbt` command output parser (Google Big Table)
|
jc - JSON Convert `cbt` command output parser (Google Bigtable)
|
||||||
|
|
||||||
Parses the human-, but not machine-, friendly output of the cbt command (for
|
Parses the human-, but not machine-, friendly output of the cbt command (for
|
||||||
Google's BigTable).
|
Google's Bigtable).
|
||||||
|
|
||||||
No effort is made to convert the data types of the values in the cells.
|
No effort is made to convert the data types of the values in the cells.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"""jc - JSON Convert `cbt` command output parser (Google Big Table)
|
"""jc - JSON Convert `cbt` command output parser (Google Bigtable)
|
||||||
|
|
||||||
Parses the human-, but not machine-, friendly output of the cbt command (for
|
Parses the human-, but not machine-, friendly output of the cbt command (for
|
||||||
Google's BigTable).
|
Google's Bigtable).
|
||||||
|
|
||||||
No effort is made to convert the data types of the values in the cells.
|
No effort is made to convert the data types of the values in the cells.
|
||||||
|
|
||||||
@ -101,7 +101,7 @@ import jc.utils
|
|||||||
class info():
|
class info():
|
||||||
"""Provides parser metadata (version, author, etc.)"""
|
"""Provides parser metadata (version, author, etc.)"""
|
||||||
version = '1.0'
|
version = '1.0'
|
||||||
description = '`cbt` (Google Big Table) command parser'
|
description = '`cbt` (Google Bigtable) command parser'
|
||||||
author = 'Andreas Weiden'
|
author = 'Andreas Weiden'
|
||||||
author_email = 'andreas.weiden@gmail.com'
|
author_email = 'andreas.weiden@gmail.com'
|
||||||
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd']
|
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd']
|
||||||
|
4
man/jc.1
4
man/jc.1
@ -1,4 +1,4 @@
|
|||||||
.TH jc 1 2022-12-14 1.22.3 "JSON Convert"
|
.TH jc 1 2022-12-16 1.22.3 "JSON Convert"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings
|
\fBjc\fP \- JSON Convert JSONifies the output of many CLI tools, file-types, and strings
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -68,7 +68,7 @@ multi-line ASCII and Unicode table parser
|
|||||||
.TP
|
.TP
|
||||||
.B
|
.B
|
||||||
\fB--cbt\fP
|
\fB--cbt\fP
|
||||||
`cbt` (Google Big Table) command parser
|
`cbt` (Google Bigtable) command parser
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B
|
.B
|
||||||
|
Reference in New Issue
Block a user