How to Install and Uninstall jo.x86_64 Package on Fedora 36

Last updated: January 15,2025

1. Install "jo.x86_64" package

This is a short guide on how to install jo.x86_64 on Fedora 36

$ sudo dnf update $ sudo dnf install jo.x86_64

2. Uninstall "jo.x86_64" package

This tutorial shows how to uninstall jo.x86_64 on Fedora 36:

$ sudo dnf remove jo.x86_64 $ sudo dnf autoremove

3. Information about the jo.x86_64 package on Fedora 36

Last metadata expiration check: 3:10:10 ago on Thu Sep 8 02:05:26 2022.
Available Packages
Name : jo
Version : 1.6
Release : 2.fc36
Architecture : x86_64
Size : 37 k
Source : jo-1.6-2.fc36.src.rpm
Repository : fedora
Summary : Small utility to create JSON objects
URL : https://github.com/jpmens/jo
License : GPLv2+
Description : This is jo, a small utility to create JSON objects
:
: $ jo -p name=jo n=17 parser=false
: {
: "name": "jo",
: "n": 17,
: "parser": false
: }
:
: or arrays
:
: $ seq 1 10 | jo -a
: [1,2,3,4,5,6,7,8,9,10]