How to Install and Uninstall perl-IO-Tee.noarch Package on Oracle Linux 8

Last updated: May 22,2024

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

This tutorial shows how to install perl-IO-Tee.noarch on Oracle Linux 8

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

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

In this section, we are going to explain the necessary steps to uninstall perl-IO-Tee.noarch on Oracle Linux 8:

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

3. Information about the perl-IO-Tee.noarch package on Oracle Linux 8

Last metadata expiration check: 1:57:39 ago on Mon Sep 12 02:51:38 2022.
Available Packages
Name : perl-IO-Tee
Version : 0.66
Release : 2.el8
Architecture : noarch
Size : 23 k
Source : perl-IO-Tee-0.66-2.el8.src.rpm
Repository : epel
Summary : Multiplex output to multiple output handles
URL : https://metacpan.org/release/IO-Tee
License : GPL+ or Artistic
Description : IO::Tee objects can be used to multiplex input and output in two different
: ways. The first way is to multiplex output to zero or more output handles.
: The IO::Tee constructor, given a list of output handles, returns a tied
: handle that can be written to. When written to (using print or printf), the
: IO::Tee object multiplexes the output to the list of handles originally
: passed to the constructor. As a shortcut, you can also directly pass a
: string or an array reference to the constructor, in which case
: IO::File::new is called for you with the specified argument or arguments.