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

Last updated: January 13,2025

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

Learn how to install perl-lexical-underscore.noarch on Fedora 38

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

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

This guide covers the steps necessary to uninstall perl-lexical-underscore.noarch on Fedora 38:

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

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

Last metadata expiration check: 1:55:20 ago on Sat Mar 16 22:59:57 2024.
Available Packages
Name : perl-lexical-underscore
Version : 0.004
Release : 19.fc38
Architecture : noarch
Size : 21 k
Source : perl-lexical-underscore-0.004-19.fc38.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.