diff --git a/docs/parsers/apt_get_sqq.md b/docs/parsers/apt_get_sqq.md index 3d9939f2..69a18ebc 100644 --- a/docs/parsers/apt_get_sqq.md +++ b/docs/parsers/apt_get_sqq.md @@ -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): @@ -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", @@ -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", @@ -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) diff --git a/jc/parsers/apt_get_sqq.py b/jc/parsers/apt_get_sqq.py index 77001cb9..7948003b 100644 --- a/jc/parsers/apt_get_sqq.py +++ b/jc/parsers/apt_get_sqq.py @@ -4,11 +4,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): @@ -30,7 +30,7 @@ Schema: Examples: - $ apt-get -sqq | jc --apt-get-sqq -p + $ apt-get -sqq upgrade | jc --apt-get-sqq -p [ { "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", @@ -174,7 +174,7 @@ import jc.utils 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'