How To Install perl-IO-stringy on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-IO-stringy
on Rocky Linux 8.
What is perl-IO-stringy
This toolkit primarily provides modules for performing both traditional and object-oriented I/O) on things other than normal filehandles; in particular, IO In the more-traditional IO may be used to painlessly create files that are updated atomically. And in the “this-may-prove-useful” corner, we have IO exported wraphandle() function will clothe anything that’s not a blessed object in an IO and stop worrying about whether your function’s caller handed you a string, a globref, or a FileHandle.
We can use yum
or dnf
to install perl-IO-stringy
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-IO-stringy.
Install perl-IO-stringy on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install perl-IO-stringy
using dnf
by running the following command:
sudo dnf -y install perl-IO-stringy
Install perl-IO-stringy on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-IO-stringy
using yum
by running the following command:
sudo yum -y install perl-IO-stringy
How To Uninstall perl-IO-stringy on Rocky Linux 8
To uninstall only the perl-IO-stringy
package we can use the following command:
sudo dnf remove perl-IO-stringy
perl-IO-stringy Package Contents on Rocky Linux 8
/usr/share/doc/perl-IO-stringy
/usr/share/doc/perl-IO-stringy/README
/usr/share/doc/perl-IO-stringy/examples
/usr/share/doc/perl-IO-stringy/examples/IO_Scalar_synopsis
/usr/share/licenses/perl-IO-stringy
/usr/share/licenses/perl-IO-stringy/COPYING
/usr/share/man/man3/IO::AtomicFile.3pm.gz
/usr/share/man/man3/IO::InnerFile.3pm.gz
/usr/share/man/man3/IO::Lines.3pm.gz
/usr/share/man/man3/IO::Scalar.3pm.gz
/usr/share/man/man3/IO::ScalarArray.3pm.gz
/usr/share/man/man3/IO::Stringy.3pm.gz
/usr/share/man/man3/IO::Wrap.3pm.gz
/usr/share/man/man3/IO::WrapTie.3pm.gz
/usr/share/perl5/vendor_perl/IO
/usr/share/perl5/vendor_perl/IO/AtomicFile.pm
/usr/share/perl5/vendor_perl/IO/InnerFile.pm
/usr/share/perl5/vendor_perl/IO/Lines.pm
/usr/share/perl5/vendor_perl/IO/Scalar.pm
/usr/share/perl5/vendor_perl/IO/ScalarArray.pm
/usr/share/perl5/vendor_perl/IO/Stringy.pm
/usr/share/perl5/vendor_perl/IO/Wrap.pm
/usr/share/perl5/vendor_perl/IO/WrapTie.pm
References
Summary
In this tutorial we learn how to install perl-IO-stringy
on Rocky Linux 8 using yum and dnf.