How to Install and Uninstall perl-Path-FindDev Package on openSuSE Tumbleweed

Last updated: May 17,2024

1. Install "perl-Path-FindDev" package

Please follow the instructions below to install perl-Path-FindDev on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Path-FindDev

2. Uninstall "perl-Path-FindDev" package

Please follow the step by step instructions below to uninstall perl-Path-FindDev on openSuSE Tumbleweed:

$ sudo zypper remove perl-Path-FindDev

3. Information about the perl-Path-FindDev package on openSuSE Tumbleweed

Information for package perl-Path-FindDev:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Path-FindDev
Version : 0.5.3-1.26
Arch : noarch
Vendor : openSUSE
Installed Size : 37.3 KiB
Installed : No
Status : not installed
Source package : perl-Path-FindDev-0.5.3-1.26.src
Upstream URL : http://search.cpan.org/dist/Path-FindDev/
Summary : Find a development path somewhere in an upper hierarchy
Description :
This package is mostly a glue layer around 'Path::IsDev' with a few
directory walking tricks.
use Path::FindDev qw( find_dev );
if ( my $root = find_dev('/some/path/to/something/somewhere')) {
print "development root = $root";
} else {
print "No development root :(";
}