Skip to content

lectrical/jq

This branch is 6 commits ahead of, 48 commits behind jqlang/jq:master.

Folders and files

NameName
Last commit message
Last commit date
Dec 28, 2024
May 11, 2013
Oct 12, 2018
Nov 13, 2024
Jul 16, 2023
Jul 13, 2023
Jul 21, 2023
Dec 13, 2023
Dec 1, 2024
Nov 20, 2024
Jul 17, 2023
Aug 21, 2023
Feb 19, 2017
Aug 23, 2023
May 1, 2024
Jun 13, 2023
Jul 24, 2023
Feb 24, 2016
Aug 21, 2024
Sep 13, 2024
May 21, 2024
Jun 19, 2023
Jul 24, 2023
Mar 20, 2024
Nov 13, 2024
Feb 6, 2024
May 28, 2023

Repository files navigation

jq

jq is a lightweight and flexible command-line JSON processor akin to sed,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.

Run with Docker

Example: Extracting the version from a package.json file
docker run --rm -i ghcr.io/jqlang/jq:latest < package.json '.version'
Example: Extracting the version from a package.json file with a mounted volume
docker run --rm -i -v "$PWD:$PWD" -w "$PWD" ghcr.io/jqlang/jq:latest '.version' package.json

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 clean                     # if upgrading from a version previously built from source
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-compilation, check out the GitHub Actions file and the cross-compilation wiki page.

Community & Support

License

jq is released under the MIT License. jq's documentation is licensed under the Creative Commons CC BY 3.0. jq uses parts of the open source C library "decNumber", which is distributed under ICU License

About

Command-line JSON processor

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 78.3%
  • M4 6.8%
  • Shell 4.7%
  • Yacc 3.6%
  • jq 2.6%
  • C++ 1.6%
  • Other 2.4%