Skip to content

elric1/jq

This branch is 612 commits behind jqlang/jq:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 6, 2018
7fd9e86 · Mar 6, 2018
May 11, 2013
Jun 28, 2015
Feb 23, 2018
Aug 14, 2014
Apr 2, 2017
Mar 3, 2017
Oct 23, 2015
Mar 6, 2018
Feb 20, 2018
Oct 23, 2012
Oct 23, 2015
Feb 19, 2017
Feb 20, 2018
Dec 11, 2017
Aug 15, 2015
Jul 10, 2015
Feb 24, 2017
Feb 24, 2016
Mar 2, 2017
Aug 16, 2015
May 8, 2013
May 11, 2017
Feb 26, 2017
Dec 13, 2017
May 21, 2017
Dec 11, 2017
Aug 15, 2015

Repository files navigation

jq

jq is a lightweight and flexible command-line JSON processor.

Coverage Status, Unix: Build Status, Windows: Windows build status

If you want to learn to use jq, read the documentation at https://stedolan.github.io/jq. This documentation is generated from the docs/ folder of this repository. You can also try it online at jqplay.org.

If you want to hack on jq, feel free, but be warned that its internals are not well-documented at the moment. Bring a hard hat and a shovel. Also, read the wiki: https://github.com/stedolan/jq/wiki, where you will find cookbooks, discussion of advanced topics, internals, release engineering, and more.

Source tarball and built executable releases can be found on the homepage and on the github release page, https://github.com/stedolan/jq/releases

If you're building directly from the latest git, you'll need flex, bison (3.0 or newer), libtool, make, and autoconf installed. To get regexp support you'll also need to install Oniguruma or clone it as a git submodule as per the instructions below. (note that jq's tests require regexp support to pass). To build, run:

git submodule update --init # if building from git to get oniguruma
autoreconf -fi              # if building from git
./configure --with-oniguruma=builtin
make -j8
make check

To build without bison or flex, add --disable-maintainer-mode to the ./configure invocation:

./configure --with-oniguruma=builtin --disable-maintainer-mode

(Developers must not use --disable-maintainer-mode, not when making changes to the jq parser and/or lexer.)

To build a statically linked version of jq, run:

make LDFLAGS=-all-static

After make finishes, you'll be able to use ./jq. You can also install it using:

sudo make install

If you're not using the latest git version but instead building a released tarball (available on the website), then you won't need to run autoreconf (and shouldn't), and you won't need flex or bison.

To cross-compile for OS X and Windows, see docs/Rakefile's build task and scripts/crosscompile. You'll need a cross-compilation environment, such as Mingw for cross-compiling for Windows.

Cross-compilation requires a clean workspace, then:

# git clean ...
autoreconf -i
./configure
make distclean
scripts/crosscompile <name-of-build> <configure-options>

Use the --host= and --target= ./configure options to select a cross-compilation environment. See also the wiki.

Send questions to https://stackoverflow.com/questions/tagged/jq or to the #jq channel (http://irc.lc/freenode/%23jq/) on Freenode (https://webchat.freenode.net/).

About

Command-line JSON processor

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 86.5%
  • Yacc 3.0%
  • M4 2.8%
  • JSONiq 2.4%
  • Shell 2.3%
  • C++ 1.4%
  • Other 1.6%