8000 GitHub - duggan/jo: JSON output from a shell
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

duggan/jo

< 10000 div class="OverviewContent-module__Box_3--NEYWl">
 
 

Repository files navigation

jo

jo logo

This is jo, a small utility to create JSON objects

$ jo -p name=jo n=17 parser=false
{
    "name": "jo",
    "n": 17,
    "parser": false
}

or arrays

$ seq 1 10 | jo -a
[1,2,3,4,5,6,7,8,9,10]

It has a manual, and you can read why I wrote jo.

Build from Release tarball

To build from a release you will need a C compiler to install from a source tarball.

tar xvzf jo-1.0.tar.gz
cd jo-1.0
./configure
make check
make install

asciicast

Build from Github

Build Status

To install from the repository, you will need a C compiler as well as a relatively recent version of automake and autoconf.

git clone git://github.com/jpmens/jo.git
cd jo
autoreconf -i
./configure
make check
make install

Homebrew

To install with Homebrew, use the tap.

brew install caius/jo/jo

Ubuntu

To install on Ubuntu, use this PPA:

apt-add-repository ppa:duggan/jo --yes
apt-get update -q
apt-get install jo

Others

About

JSON output from a shell

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 62.9%
  • Shell 28.5%
  • Roff 6.7%
  • Makefile 1.9%
0