0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.118.33.239


Current Path : /snap/core/16928/usr/share/perl5/Debconf/
Upload File :
Current File : //snap/core/16928/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