How To Install pick on Fedora 36
Introduction
In this tutorial we learn how to install pick on Fedora 36.
What is pick
The pick utility allows users to choose one option from a set of choices using an interface with fuzzy search functionality. pick reads a list of choices on stdin and outputs the selected choice on stdout. Therefore it is easily used both in pipelines and subshells.
We can use yum or dnf to install pick on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install pick.
Install pick 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 pick using dnf by running the following command:
sudo dnf -y install pick
Install pick 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 pick using yum by running the following command:
sudo yum -y install pick
How To Uninstall pick on Fedora 36
To uninstall only the pick package we can use the following command:
sudo dnf remove pick
pick Package Contents on Fedora 36
/usr/bin/pick
/usr/lib/.build-id
/usr/lib/.build-id/27
/usr/lib/.build-id/27/2da73d83b86e6e74326cdcc87d4039d5dbab16
/usr/share/doc/pick
/usr/share/doc/pick/CHANGELOG.md
/usr/share/doc/pick/README.md
/usr/share/licenses/pick
/usr/share/licenses/pick/LICENSE
/usr/share/man/man1/pick.1.gz
References
Summary
In this tutorial we learn how to install pick on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).