1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-21 00:19:42 +02:00

standardize doc

This commit is contained in:
Kelly Brazil
2020-08-06 12:55:24 -07:00
parent 69e7a560fd
commit 4f10f79c73
2 changed files with 4 additions and 8 deletions

View File

@ -2,6 +2,8 @@
# jc.parsers.uname # jc.parsers.uname
jc - JSON CLI output utility `uname -a` command output parser jc - JSON CLI output utility `uname -a` command output parser
Note: Must use `uname -a`
Usage (cli): Usage (cli):
$ uname -a | jc --uname $ uname -a | jc --uname
@ -15,10 +17,6 @@ Usage (module):
import jc.parsers.uname import jc.parsers.uname
result = jc.parsers.uname.parse(uname_command_output) result = jc.parsers.uname.parse(uname_command_output)
Limitations:
must use 'uname -a'
Compatibility: Compatibility:
'linux', 'darwin', 'freebsd' 'linux', 'darwin', 'freebsd'

View File

@ -1,5 +1,7 @@
"""jc - JSON CLI output utility `uname -a` command output parser """jc - JSON CLI output utility `uname -a` command output parser
Note: Must use `uname -a`
Usage (cli): Usage (cli):
$ uname -a | jc --uname $ uname -a | jc --uname
@ -13,10 +15,6 @@ Usage (module):
import jc.parsers.uname import jc.parsers.uname
result = jc.parsers.uname.parse(uname_command_output) result = jc.parsers.uname.parse(uname_command_output)
Limitations:
must use 'uname -a'
Compatibility: Compatibility:
'linux', 'darwin', 'freebsd' 'linux', 'darwin', 'freebsd'