1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-17 01:32:37 +02:00
This commit is contained in:
Kelly Brazil
2021-04-01 20:41:05 -07:00
parent 74d3ac686a
commit 9dae1091dd
2 changed files with 5 additions and 5 deletions

View File

@ -2,9 +2,9 @@
# jc.parsers.dpkg_l # jc.parsers.dpkg_l
jc - JSON CLI output utility `dpkg -l` command output parser jc - JSON CLI output utility `dpkg -l` command output parser
Set the `COLUMN` environment variable to a large value to avoid field truncation. For example: Set the `COLUMNS` environment variable to a large value to avoid field truncation. For example:
$ COLUMN=500 dpkg -l | jc --dpkg-l $ COLUMNS=500 dpkg -l | jc --dpkg-l
Usage (cli): Usage (cli):
@ -146,7 +146,7 @@ Returns:
"description": string, "description": string,
"desired": string, "desired": string,
"status": string, "status": string,
"error": string "error": string
} }
] ]

View File

@ -1,8 +1,8 @@
"""jc - JSON CLI output utility `dpkg -l` command output parser """jc - JSON CLI output utility `dpkg -l` command output parser
Set the `COLUMN` environment variable to a large value to avoid field truncation. For example: Set the `COLUMNS` environment variable to a large value to avoid field truncation. For example:
$ COLUMN=500 dpkg -l | jc --dpkg-l $ COLUMNS=500 dpkg -l | jc --dpkg-l
Usage (cli): Usage (cli):