How to Install and Uninstall perl-File-chdir Package on openSuSE Tumbleweed

Last updated: June 14,2024

1. Install "perl-File-chdir" package

Please follow the steps below to install perl-File-chdir on openSuSE Tumbleweed

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

2. Uninstall "perl-File-chdir" package

Please follow the steps below to uninstall perl-File-chdir on openSuSE Tumbleweed:

$ sudo zypper remove perl-File-chdir

3. Information about the perl-File-chdir package on openSuSE Tumbleweed

Information for package perl-File-chdir:
----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-File-chdir
Version : 0.1011-1.15
Arch : noarch
Vendor : openSUSE
Installed Size : 45.9 KiB
Installed : No
Status : not installed
Source package : perl-File-chdir-0.1011-1.15.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.