How To Install miller on Fedora 36
Introduction
In this tutorial we learn how to install miller
on Fedora 36.
What is miller
Miller (mlr) allows name-indexed data such as CSV and JSON files to be processed with functions equivalent to sed, awk, cut, join, sort etc. It can convert between formats, preserves headers when sorting or reversing, and streams data where possible so its memory requirements stay small. It works well with pipes and can feed “tail -f”.
We can use yum
or dnf
to install miller
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install miller.
Install miller on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install miller
using dnf
by running the following command:
sudo dnf -y install miller
Install miller on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install miller
using yum
by running the following command:
sudo yum -y install miller
How To Uninstall miller on Fedora 36
To uninstall only the miller
package we can use the following command:
sudo dnf remove miller
miller Package Contents on Fedora 36
/usr/bin/mlr
/usr/lib/.build-id
/usr/lib/.build-id/bb
/usr/lib/.build-id/bb/01222a8ad69ac9fe5cce04ec38b405db79997a
/usr/share/doc/miller
/usr/share/doc/miller/README.md
/usr/share/licenses/miller
/usr/share/licenses/miller/LICENSE.txt
/usr/share/man/man1/mlr.1.gz
References
Summary
In this tutorial we learn how to install miller
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).