Skip to content

pkoppstein/jq

This branch is 4 commits ahead of, 201 commits behind jqlang/jq:master.

Folders and files

NameName
Last commit message
Last commit date
Aug 12, 2023
May 11, 2013
Oct 12, 2018
Aug 16, 2023
Jul 16, 2023
Jul 31, 2023
Jul 21, 2023
Aug 1, 2023
Aug 17, 2023
Aug 17, 2023
Jul 17, 2023
Jul 3, 2023
Feb 19, 2017
Jul 22, 2023
Jun 13, 2023
Jun 13, 2023
Jul 24, 2023
Feb 24, 2016
Aug 13, 2023
Aug 6, 2023
Aug 3, 2023
Jun 19, 2023
Jul 24, 2023
Jul 24, 2023
Aug 16, 2023
Jun 28, 2023
May 28, 2023

Repository files navigation

jq

jq is a lightweight and flexible command-line JSON processor akin tosed,awk,grep, and friends for JSON data. It's written in portable C and has zero runtime dependencies, allowing you to easily slice, filter, map, and transform structured data.

Documentation

Installation

Prebuilt Binaries

Download the latest releases from the GitHub release page.

Docker Image

Pull the jq image to start quickly with Docker.

Building from source

Dependencies

  • libtool
  • make
  • automake
  • autoconf

Instructions

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

Build a statically linked version:

make LDFLAGS=-all-static

If you're not using the latest git version but instead building a released tarball (available on the release page), skip the autoreconf step, and flex or bison won't be needed.

Cross-Compilation

For details on cross-compliation, check out the GitHub Actions file and the cross-compliation wiki page.

Community & Support

License

jq is released under the MIT License.

About

Command-line JSON processor

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 80.1%
  • M4 7.0%
  • Shell 4.2%
  • Yacc 3.7%
  • jq 2.6%
  • Makefile 1.4%
  • Other 1.0%