How to Install and Uninstall perl-lexical-underscore.noarch Package on Fedora 39

Last updated: September 29,2024

1. Install "perl-lexical-underscore.noarch" package

In this section, we are going to explain the necessary steps to install perl-lexical-underscore.noarch on Fedora 39

$ sudo dnf update $ sudo dnf install perl-lexical-underscore.noarch

2. Uninstall "perl-lexical-underscore.noarch" package

Please follow the steps below to uninstall perl-lexical-underscore.noarch on Fedora 39:

$ sudo dnf remove perl-lexical-underscore.noarch $ sudo dnf autoremove

3. Information about the perl-lexical-underscore.noarch package on Fedora 39

Last metadata expiration check: 4:21:19 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : perl-lexical-underscore
Version : 0.004
Release : 20.fc39
Architecture : noarch
Size : 20 k
Source : perl-lexical-underscore-0.004-20.fc39.src.rpm
Repository : fedora
Summary : Access your caller's lexical underscore
URL : https://metacpan.org/release/lexical-underscore
License : (GPL+ or Artistic) and Public Domain
Description : Starting with Perl 5.10, it is possible to create a lexical version of the
: Perl default variable $_.
:
: It is occasionally useful for a subroutine to be able to access its caller's
: $_ variable regardless of whether it was lexical or not. The "(_)" sub
: prototype is the official way to do so, however there are sometimes
: disadvantages to this.
:
: The "lexical::underscore" function returns a scalar reference to either
: a lexical $_ variable somewhere up the call stack (using PadWalker magic), or
: to the global $_ if there was no lexical version.