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

Last updated: June 26,2024

1. Install "jo.x86_64" package

This guide let you learn how to install jo.x86_64 on CentOS Stream 8

$ sudo dnf update $ sudo dnf install jo.x86_64

2. Uninstall "jo.x86_64" package

Please follow the step by step instructions below to uninstall jo.x86_64 on CentOS Stream 8:

$ sudo dnf remove jo.x86_64 $ sudo dnf autoremove

3. Information about the jo.x86_64 package on CentOS Stream 8

Last metadata expiration check: 2:12:16 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : jo
Version : 1.9
Release : 1.el8
Architecture : x86_64
Size : 39 k
Source : jo-1.9-1.el8.src.rpm
Repository : epel
Summary : Small utility to create JSON objects
URL : https://github.com/jpmens/jo
License : GPL-2.0-or-later AND MIT AND LicenseRef-Fedora-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]