How to Install and Uninstall jo.x86_64 Package on CentOS 8 / RHEL 8

Last updated: January 19,2025

1. Install "jo.x86_64" package

Here is a brief guide to show you how to install jo.x86_64 on CentOS 8 / RHEL 8

$ sudo dnf update $ sudo dnf install jo.x86_64

2. Uninstall "jo.x86_64" package

Please follow the instructions below to uninstall jo.x86_64 on CentOS 8 / RHEL 8:

$ sudo dnf remove jo.x86_64 $ sudo dnf autoremove

3. Information about the jo.x86_64 package on CentOS 8 / RHEL 8

Last metadata expiration check: 1 day, 5:08:25 ago on Sun May 9 13:03:46 2021.
Available Packages
Name : jo
Version : 1.4
Release : 1.el8
Architecture : x86_64
Size : 35 k
Source : jo-1.4-1.el8.src.rpm
Repository : epel
Summary : Small utility to create JSON objects
URL : https://github.com/jpmens/jo
License : GPLv2+ and MIT and Public Domain
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]