From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
#!perl
ok( check_unzip() == 1 , 'have_unzip' );
sub check_unzip {
my $ok = 0;
if ( $ok = `which unzip`){
$ok = 1;
}
else {
print STDERR "\n\nOOOPS! unzip executable not found!\n\n" ;
}
return $ok ;
}
|