How to Install and Uninstall perl-File-chdir.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "perl-File-chdir.noarch" package

Please follow the instructions below to install perl-File-chdir.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-File-chdir.noarch

2. Uninstall "perl-File-chdir.noarch" package

Here is a brief guide to show you how to uninstall perl-File-chdir.noarch on Fedora 34:

$ sudo dnf remove perl-File-chdir.noarch $ sudo dnf autoremove

3. Information about the perl-File-chdir.noarch package on Fedora 34

Last metadata expiration check: 2:47:10 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-File-chdir
Version : 0.1011
Release : 14.fc34
Architecture : noarch
Size : 28 k
Source : perl-File-chdir-0.1011-14.fc34.src.rpm
Repository : fedora
Summary : A more sensible way to change directories
URL : https://metacpan.org/release/File-chdir
License : GPL+ or Artistic
Description : Perl's chdir() has the unfortunate problem of being very, very, very
: global. If any part of your program calls chdir() or if any library you
: use calls chdir(), it changes the current working directory for the
: whole program.
:
: This is not good.
:
: File::chdir gives you an alternative, $CWD and @CWD. These two variables
: combine all the power of chdir(), File::Spec and Cwd.