AlaK4X
Linux lhjmq-records 5.15.0-118-generic #128-Ubuntu SMP Fri Jul 5 09:28:59 UTC 2024 x86_64



Your IP : 3.147.66.224


Current Path : /usr/share/perl5/Debconf/
Upload File :
Current File : //usr/share/perl5/Debconf/Path.pm

#!/usr/bin/perl
# This file was preprocessed, do not edit!


package Debconf::Path;
use strict;
use File::Spec;


sub find {
	my $program=shift;
	my @path=File::Spec->path();
	for my $dir (@path) {
		my $file=File::Spec->catfile($dir, $program);
		return 1 if -x $file;
	}
	return '';
}


1