How to Install and Uninstall jo.x86_64 Package on AlmaLinux 8

Last updated: May 19,2024

1. Install "jo.x86_64" package

In this section, we are going to explain the necessary steps to install jo.x86_64 on AlmaLinux 8

$ sudo dnf update $ sudo dnf install jo.x86_64

2. Uninstall "jo.x86_64" package

This is a short guide on how to uninstall jo.x86_64 on AlmaLinux 8:

$ sudo dnf remove jo.x86_64 $ sudo dnf autoremove

3. Information about the jo.x86_64 package on AlmaLinux 8

Last metadata expiration check: 2:09:40 ago on Mon Sep 5 03:22:42 2022.
Available Packages
Name : jo
Version : 1.6
Release : 1.el8
Architecture : x86_64
Size : 38 k
Source : jo-1.6-1.el8.src.rpm
Repository : epel
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]