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

Last updated: September 20,2024

1. Install "jo.x86_64" package

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

$ sudo dnf update $ sudo dnf install jo.x86_64

2. Uninstall "jo.x86_64" package

This guide let you learn how to uninstall jo.x86_64 on Fedora 34:

$ sudo dnf remove jo.x86_64 $ sudo dnf autoremove

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

Last metadata expiration check: 0:21:06 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : jo
Version : 1.6
Release : 1.fc34
Architecture : x86_64
Size : 36 k
Source : jo-1.6-1.fc34.src.rpm
Repository : updates
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]