Linux sea-business-23.hostwindsdns.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
LiteSpeed
Server IP : 104.168.155.189 & Your IP : 216.73.217.84
Domains :
Cant Read [ /etc/named.conf ]
User : zvmcccat
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
share /
perl5 /
ExtUtils /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxr-xr-x
2019-06-05 11:33
Helpers
[ DIR ]
drwxr-xr-x
2024-02-24 10:06
Liblist
[ DIR ]
drwxr-xr-x
2019-06-05 11:33
MakeMaker
[ DIR ]
drwxr-xr-x
2019-06-05 11:33
ParseXS
[ DIR ]
drwxr-xr-x
2019-04-25 10:53
Typemaps
[ DIR ]
drwxr-xr-x
2019-04-25 10:53
Command.pm
7.61
KB
-r--r--r--
2019-04-28 15:32
Config.pm
2.06
KB
-r--r--r--
2014-06-25 15:37
Helpers.pm
2.72
KB
-r--r--r--
2016-09-09 17:26
Install.pm
39.63
KB
-r--r--r--
2019-06-05 11:33
InstallPaths.pm
19.46
KB
-r--r--r--
2018-05-10 19:03
Installed.pm
14.03
KB
-r--r--r--
2019-06-05 11:33
Liblist.pm
9.27
KB
-r--r--r--
2019-04-28 15:32
MANIFEST.SKIP
971
B
-r--r--r--
2019-06-05 11:33
MM.pm
2.08
KB
-r--r--r--
2019-04-28 15:32
MM_AIX.pm
1.44
KB
-r--r--r--
2019-04-28 15:32
MM_Any.pm
80.9
KB
-r--r--r--
2019-04-28 15:32
MM_BeOS.pm
1.02
KB
-r--r--r--
2019-04-28 15:32
MM_Cygwin.pm
3.99
KB
-r--r--r--
2019-04-28 15:32
MM_DOS.pm
1.02
KB
-r--r--r--
2019-04-28 15:32
MM_Darwin.pm
931
B
-r--r--r--
2019-04-28 15:32
MM_MacOS.pm
887
B
-r--r--r--
2019-04-28 15:32
MM_NW5.pm
5.33
KB
-r--r--r--
2019-04-28 15:32
MM_OS2.pm
3.14
KB
-r--r--r--
2019-04-28 15:32
MM_QNX.pm
889
B
-r--r--r--
2019-04-28 15:32
MM_UWIN.pm
976
B
-r--r--r--
2019-04-28 15:32
MM_Unix.pm
111.52
KB
-r--r--r--
2019-04-28 15:32
MM_VMS.pm
66.6
KB
-r--r--r--
2019-04-28 15:32
MM_VOS.pm
744
B
-r--r--r--
2019-04-28 15:32
MM_Win32.pm
14.32
KB
-r--r--r--
2019-04-28 15:32
MM_Win95.pm
1.25
KB
-r--r--r--
2019-04-28 15:32
MY.pm
673
B
-r--r--r--
2019-04-28 15:32
MakeMaker.pm
106.18
KB
-r--r--r--
2019-04-28 15:32
Manifest.pm
22.89
KB
-r--r--r--
2019-06-05 11:33
Mkbootstrap.pm
3.22
KB
-r--r--r--
2019-04-28 15:32
Mksymlists.pm
10.74
KB
-r--r--r--
2019-04-28 15:32
Packlist.pm
8.36
KB
-r--r--r--
2019-06-05 11:33
ParseXS.pm
65.01
KB
-r--r--r--
2017-07-31 15:46
ParseXS.pod
4.3
KB
-r--r--r--
2017-07-31 15:46
Typemaps.pm
26.17
KB
-r--r--r--
2017-07-31 15:46
testlib.pm
911
B
-r--r--r--
2019-04-28 15:32
xsubpp
4.95
KB
-r--r--r--
2017-07-31 15:46
Save
Rename
package ExtUtils::Helpers; $ExtUtils::Helpers::VERSION = '0.026'; use strict; use warnings FATAL => 'all'; use Exporter 5.57 'import'; use Config; use File::Basename qw/basename/; use File::Spec::Functions qw/splitpath canonpath abs2rel splitdir/; use Text::ParseWords 3.24 (); our @EXPORT_OK = qw/make_executable split_like_shell man1_pagename man3_pagename detildefy/; BEGIN { my %impl_for = ( MSWin32 => 'Windows', VMS => 'VMS'); my $package = 'ExtUtils::Helpers::' . ($impl_for{$^O} || 'Unix'); my $impl = $impl_for{$^O} || 'Unix'; require "ExtUtils/Helpers/$impl.pm"; "ExtUtils::Helpers::$impl"->import(); } sub split_like_shell { my ($string) = @_; return if not defined $string; $string =~ s/^\s+|\s+$//g; return if not length $string; return Text::ParseWords::shellwords($string); } sub man1_pagename { my $filename = shift; return basename($filename).".$Config{man1ext}"; } my %separator = ( MSWin32 => '.', VMS => '__', os2 => '.', cygwin => '.', ); my $separator = $separator{$^O} || '::'; sub man3_pagename { my ($filename, $base) = @_; $base ||= 'lib'; my ($vols, $dirs, $file) = splitpath(canonpath(abs2rel($filename, $base))); $file = basename($file, qw/.pm .pod/); my @dirs = grep { length } splitdir($dirs); return join $separator, @dirs, "$file.$Config{man3ext}"; } 1; # ABSTRACT: Various portability utilities for module builders __END__ =pod =encoding utf-8 =head1 NAME ExtUtils::Helpers - Various portability utilities for module builders =head1 VERSION version 0.026 =head1 SYNOPSIS use ExtUtils::Helpers qw/make_executable split_like_shell/; unshift @ARGV, split_like_shell($ENV{PROGRAM_OPTS}); write_script_to('Build'); make_executable('Build'); =head1 DESCRIPTION This module provides various portable helper functions for module building modules. =head1 FUNCTIONS =head2 make_executable($filename) This makes a perl script executable. =head2 split_like_shell($string) This function splits a string the same way as the local platform does. =head2 detildefy($path) This function substitutes a tilde at the start of a path with the users homedir in an appropriate manner. =head2 man1_pagename($filename) Returns the man page filename for a script. =head2 man3_pagename($filename, $basedir) Returns the man page filename for a Perl library. =head1 ACKNOWLEDGEMENTS Olivier Mengué and Christian Walde made C<make_executable> work on Windows. =head1 AUTHORS =over 4 =item * Ken Williams <kwilliams@cpan.org> =item * Leon Timmermans <leont@cpan.org> =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004 by Ken Williams, Leon Timmermans. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut