How to Install and Uninstall perl-IO-String.noarch Package on CentOS Stream 8

Last updated: May 19,2024

1. Install "perl-IO-String.noarch" package

Here is a brief guide to show you how to install perl-IO-String.noarch on CentOS Stream 8

$ sudo dnf update $ sudo dnf install perl-IO-String.noarch

2. Uninstall "perl-IO-String.noarch" package

This guide let you learn how to uninstall perl-IO-String.noarch on CentOS Stream 8:

$ sudo dnf remove perl-IO-String.noarch $ sudo dnf autoremove

3. Information about the perl-IO-String.noarch package on CentOS Stream 8

Last metadata expiration check: 0:17:36 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : perl-IO-String
Version : 1.08
Release : 32.el8
Architecture : noarch
Size : 21 k
Source : perl-IO-String-1.08-32.el8.src.rpm
Repository : appstream
Summary : Emulate file interface for in-core strings
URL : http://search.cpan.org/dist/IO-String/
License : GPL+ or Artistic
Description : The "IO::String" module provides the "IO::File" interface for in-core
: strings. An "IO::String" object can be attached to a string, and
: makes it possible to use the normal file operations for reading or
: writing data, as well as for seeking to various locations of the
: string. This is useful when you want to use a library module that
: only provides an interface to file handles on data that you have in a
: string variable.
:
: Note that perl-5.8 and better has built-in support for "in memory"
: files, which are set up by passing a reference instead of a filename
: to the open() call. The reason for using this module is that it makes
: the code backwards compatible with older versions of Perl.