commit | 53344ead3f90aa356b5f569040e1aba0b095e459 | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Thu May 01 06:35:55 2025 +0000 |
committer | GitHub <[email protected]> | Thu May 01 06:35:55 2025 +0000 |
tree | dec9d6d74f064f67969c7471261242911db7beed | |
parent | aea8efaf0bc99ad5776038380f68939fef2fd0cb [diff] |
build(deps): bump markdown from 3.7 to 3.8 in /docs Bumps [markdown](https://github.com/Python-Markdown/markdown) from 3.7 to 3.8. - [Release notes](https://github.com/Python-Markdown/markdown/releases) - [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md) - [Commits](https://github.com/Python-Markdown/markdown/compare/3.7...3.8) --- updated-dependencies: - dependency-name: markdown dependency-version: '3.8' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
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.
Download the latest releases from the GitHub release page.
Pull the jq image to start quickly with Docker.
package.json
filedocker run --rm -i ghcr.io/jqlang/jq:latest < package.json '.version'
package.json
file with a mounted volumedocker run --rm -i -v "$PWD:$PWD" -w "$PWD" ghcr.io/jqlang/jq:latest '.version' package.json
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.
For details on cross-compilation, check out the GitHub Actions file and the cross-compilation wiki page.
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