1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Source: jo
Section: utils
Priority: optional
Maintainer: Vincent Bernat <bernat@debian.org>
Build-Depends: debhelper-compat (= 12),
bash-completion,
pandoc,
pkgconf,
Standards-Version: 4.5.0
Homepage: https://github.com/jpmens/jo
Vcs-Browser: https://salsa.debian.org/debian/jo
Vcs-Git: https://salsa.debian.org/debian/jo.git
Package: jo
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: command-line processor to output JSON from a shell
jo creates a JSON string on stdout from words given it as arguments
or read from stdin. It can generate both arrays and objects. Here is
a short example:
.
$ jo -p name=jo n=17 parser@0
{
"name": "jo",
"n": 17,
"parser": false
}
|