How to Install and Uninstall perl-Perl6-Caller.noarch Package on Oracle Linux 8

Last updated: July 02,2024

1. Install "perl-Perl6-Caller.noarch" package

Please follow the step by step instructions below to install perl-Perl6-Caller.noarch on Oracle Linux 8

$ sudo dnf update $ sudo dnf install perl-Perl6-Caller.noarch

2. Uninstall "perl-Perl6-Caller.noarch" package

Please follow the guidance below to uninstall perl-Perl6-Caller.noarch on Oracle Linux 8:

$ sudo dnf remove perl-Perl6-Caller.noarch $ sudo dnf autoremove

3. Information about the perl-Perl6-Caller.noarch package on Oracle Linux 8

Last metadata expiration check: 2:47:49 ago on Mon Sep 12 02:51:38 2022.
Available Packages
Name : perl-Perl6-Caller
Version : 0.100
Release : 18.el8
Architecture : noarch
Size : 17 k
Source : perl-Perl6-Caller-0.100-18.el8.src.rpm
Repository : epel
Summary : OO caller() interface
URL : https://metacpan.org/release/Perl6-Caller
License : GPL+ or Artistic
Description : By default, this module exports the caller function. This automatically
: returns a new caller object. An optional argument specifies how many stack
: frames back to skip, just like the CORE::caller function. This lets you do
: things like this:
:
: print "In ", caller->subroutine,
: " called from ", caller->filename,
: " line ", caller->line;
:
: If you do not wish the caller function imported, specify an empty import list
: and instantiate a new Perl6::Caller object.
:
: use Perl6::Caller ();
: my $caller = Perl6::Caller->new;
: print $caller->line;
:
: Note: if the results from the module seem strange, please read
: perldoc -s caller carefully. It has stranger behavior than you might be aware.