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

Last updated: November 30,2024

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

Please follow the steps below to install perl-File-chdir.noarch on Fedora 39

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

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

Please follow the steps below to uninstall perl-File-chdir.noarch on Fedora 39:

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

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

Last metadata expiration check: 1:05:23 ago on Thu Mar 7 11:44:58 2024.
Available Packages
Name : perl-File-chdir
Version : 0.1011
Release : 22.fc39
Architecture : noarch
Size : 27 k
Source : perl-File-chdir-0.1011-22.fc39.src.rpm
Repository : fedora
Summary : A more sensible way to change directories
URL : https://metacpan.org/release/File-chdir
License : GPL-1.0-or-later OR Artistic-1.0-Perl
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.