1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-08-08 22:36:48 +02:00

doc update

This commit is contained in:
Kelly Brazil
2024-04-28 13:10:38 -07:00
parent 18a00bc57a
commit dfc942776b
2 changed files with 10 additions and 10 deletions

View File

@@ -9,11 +9,11 @@ Requires the `-sqq` options in `apt-get`.
Usage (cli): Usage (cli):
$ apt-get -sqq | jc --apt-get-sqq $ apt-get -sqq upgrade | jc --apt-get-sqq
or or
$ jc apt-get -sqq $ jc apt-get -sqq full-upgrade
Usage (module): Usage (module):
@@ -35,7 +35,7 @@ Schema:
Examples: Examples:
$ apt-get -sqq | jc --apt-get-sqq -p $ apt-get -sqq upgrade | jc --apt-get-sqq -p
[ [
{ {
"operation": "unpack", "operation": "unpack",
@@ -103,7 +103,7 @@ Examples:
} }
] ]
$ apt-get -sqq | jc --apt-get-sqq -p -r $ apt-get -sqq upgrade | jc --apt-get-sqq -p -r
[ [
{ {
"operation": "Inst", "operation": "Inst",
@@ -198,4 +198,4 @@ Compatibility: linux
Source: [`jc/parsers/apt_get_sqq.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/apt_get_sqq.py) Source: [`jc/parsers/apt_get_sqq.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/apt_get_sqq.py)
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com) Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com)

View File

@@ -4,11 +4,11 @@ Requires the `-sqq` options in `apt-get`.
Usage (cli): Usage (cli):
$ apt-get -sqq | jc --apt-get-sqq $ apt-get -sqq upgrade | jc --apt-get-sqq
or or
$ jc apt-get -sqq $ jc apt-get -sqq full-upgrade
Usage (module): Usage (module):
@@ -30,7 +30,7 @@ Schema:
Examples: Examples:
$ apt-get -sqq | jc --apt-get-sqq -p $ apt-get -sqq upgrade | jc --apt-get-sqq -p
[ [
{ {
"operation": "unpack", "operation": "unpack",
@@ -98,7 +98,7 @@ Examples:
} }
] ]
$ apt-get -sqq | jc --apt-get-sqq -p -r $ apt-get -sqq upgrade | jc --apt-get-sqq -p -r
[ [
{ {
"operation": "Inst", "operation": "Inst",
@@ -174,7 +174,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.1'
description = '`apt-get -sqq` command parser' description = '`apt-get -sqq` command parser'
author = 'Kelly Brazil' author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com' author_email = 'kellyjonbrazil@gmail.com'