Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjonbrazil committed Apr 28, 2024
1 parent 18a00bc commit dfc9427
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions docs/parsers/apt_get_sqq.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Requires the `-sqq` options in `apt-get`.

Usage (cli):

$ apt-get -sqq | jc --apt-get-sqq
$ apt-get -sqq upgrade | jc --apt-get-sqq

or

$ jc apt-get -sqq
$ jc apt-get -sqq full-upgrade

Usage (module):

Expand All @@ -35,7 +35,7 @@ Schema:

Examples:

$ apt-get -sqq | jc --apt-get-sqq -p
$ apt-get -sqq upgrade | jc --apt-get-sqq -p
[
{
"operation": "unpack",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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)

Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com)
10 changes: 5 additions & 5 deletions jc/parsers/apt_get_sqq.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
Usage (cli):
$ apt-get -sqq | jc --apt-get-sqq
$ apt-get -sqq upgrade | jc --apt-get-sqq
or
$ jc apt-get -sqq
$ jc apt-get -sqq full-upgrade
Usage (module):
Expand All @@ -30,7 +30,7 @@
Examples:
$ apt-get -sqq | jc --apt-get-sqq -p
$ apt-get -sqq upgrade | jc --apt-get-sqq -p
[
{
"operation": "unpack",
Expand Down Expand Up @@ -98,7 +98,7 @@
}
]
$ apt-get -sqq | jc --apt-get-sqq -p -r
$ apt-get -sqq upgrade | jc --apt-get-sqq -p -r
[
{
"operation": "Inst",
Expand Down Expand Up @@ -174,7 +174,7 @@

class info():
"""Provides parser metadata (version, author, etc.)"""
version = '1.0'
version = '1.1'
description = '`apt-get -sqq` command parser'
author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com'
Expand Down

0 comments on commit dfc9427

Please sign in to comment.