How To Install jq on Fedora 36
Introduction
In this tutorial we learn how to install jq
on Fedora 36.
What is jq
lightweight and flexible command-line JSON processor jq is like sed for JSON data – you can use it to slice and filter and map and transform structured data with the same ease that sed, awk, grep and friends let you play with text. It is written in portable C, and it has zero runtime dependencies. jq can mangle the data format that you have into the one that you want with very little effort, and the program to do so is often shorter and simpler than you’d expect.
We can use yum
or dnf
to install jq
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install jq.
Install jq on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install jq
using dnf
by running the following command:
sudo dnf -y install jq
Install jq on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install jq
using yum
by running the following command:
sudo yum -y install jq
How To Uninstall jq on Fedora 36
To uninstall only the jq
package we can use the following command:
sudo dnf remove jq
jq Package Contents on Fedora 36
/usr/bin/jq
/usr/lib/.build-id
/usr/lib/.build-id/b3
/usr/lib/.build-id/b3/b75bfd7b0011d26ce356a0d0a1c819f7df4c15
/usr/lib/.build-id/ef
/usr/lib/.build-id/ef/7c577a0d9cea4b22d76448f58e31bfe2a6786a
/usr/lib64/libjq.so.1
/usr/lib64/libjq.so.1.0.4
/usr/share/doc/jq/AUTHORS
/usr/share/doc/jq/COPYING
/usr/share/doc/jq/README
/usr/share/doc/jq/README.md
/usr/share/man/man1/jq.1.gz
References
Summary
In this tutorial we learn how to install jq
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).