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 /
cpan /
IPC-SysV /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
ipcsysv.t
8.1
KB
-r--r--r--
2014-12-27 11:48
msg.t
2.29
KB
-r--r--r--
2014-12-27 11:48
pod.t
1.42
KB
-r--r--r--
2014-12-27 11:48
podcov.t
1.24
KB
-r--r--r--
2014-12-27 11:48
sem.t
2.19
KB
-r--r--r--
2014-12-27 11:48
shm.t
2.33
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
################################################################################ # # Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <mhx@cpan.org>. # Version 1.x, Copyright (C) 1999, Graham Barr <gbarr@pobox.com>. # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # ################################################################################ BEGIN { if ($ENV{'PERL_CORE'}) { chdir 't' if -d 't'; @INC = '../lib' if -d '../lib' && -d '../ext'; } require Test::More; import Test::More; require Config; import Config; if ($ENV{'PERL_CORE'} && $Config{'extensions'} !~ m[\bIPC/SysV\b]) { plan(skip_all => 'IPC::SysV was not built'); } } use strict; my @pods; # find all potential pod files if (open F, "MANIFEST") { chomp(my @files = <F>); close F; for my $f (@files) { next if $f =~ /ppport/; if (open F, $f) { while (<F>) { if (/^=\w+/) { push @pods, $f; last; } } close F; } } } # load Test::Pod if possible, otherwise load Test::More eval { require Test::Pod; $Test::Pod::VERSION >= 0.95 or die "Test::Pod version only $Test::Pod::VERSION"; import Test::Pod tests => scalar @pods; }; if ($@) { require Test::More; import Test::More skip_all => "testing pod requires Test::Pod"; } else { for my $pod (@pods) { pod_file_ok($pod); } }