How to Install and Uninstall perl-File-chdir Package on openSUSE Leap

Last updated: October 06,2024

1. Install "perl-File-chdir" package

In this section, we are going to explain the necessary steps to install perl-File-chdir on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-File-chdir

2. Uninstall "perl-File-chdir" package

Learn how to uninstall perl-File-chdir on openSUSE Leap:

$ sudo zypper remove perl-File-chdir

3. Information about the perl-File-chdir package on openSUSE Leap

Information for package perl-File-chdir:
----------------------------------------
Repository : Main Repository
Name : perl-File-chdir
Version : 0.1011-bp155.2.12
Arch : noarch
Vendor : openSUSE
Installed Size : 46.1 KiB
Installed : No
Status : not installed
Source package : perl-File-chdir-0.1011-bp155.2.12.src
Upstream URL : https://metacpan.org/release/File-chdir
Summary : More sensible way to change directories
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 sucks.
File::chdir gives you an alternative, '$CWD' and '@CWD'. These two
variables combine all the power of 'chdir()', File::Spec and Cwd.