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 /
t /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
elsif.t
463
B
-r--r--r--
2014-12-27 11:49
for.t
1.98
KB
-r--r--r--
2014-12-27 11:49
mod.t
1.08
KB
-r--r--r--
2014-12-27 11:49
subval.t
3.7
KB
-r--r--r--
2014-12-27 11:49
switch.t
1.42
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!./perl print "1..13\n"; print "ok 1\n" if 1; print "not ok 1\n" unless 1; print "ok 2\n" unless 0; print "not ok 2\n" if 0; 1 && (print "not ok 3\n") if 0; 1 && (print "ok 3\n") if 1; 0 || (print "not ok 4\n") if 0; 0 || (print "ok 4\n") if 1; $x = 0; do {$x[$x] = $x;} while ($x++) < 10; if (join(' ',@x) eq '0 1 2 3 4 5 6 7 8 9 10') { print "ok 5\n"; } else { print "not ok 5 @x\n"; } $x = 15; $x = 10 while $x < 10; if ($x == 15) {print "ok 6\n";} else {print "not ok 6\n";} $y[$_] = $_ * 2 foreach @x; if (join(' ',@y) eq '0 2 4 6 8 10 12 14 16 18 20') { print "ok 7\n"; } else { print "not ok 7 @y\n"; } open(foo,'./TEST') || open(foo,'TEST') || open(foo,'t/TEST'); $x = 0; $x++ while <foo>; print $x > 50 && $x < 1000 ? "ok 8\n" : "not ok 8\n"; $x = -0.5; print "not " if scalar($x) < 0 and $x >= 0; print "ok 9\n"; print "not " unless (-(-$x) < 0) == ($x < 0); print "ok 10\n"; print "ok 11\n" if $x < 0; print "not ok 11\n" unless $x < 0; print "ok 12\n" unless $x > 0; print "not ok 12\n" if $x > 0; # This used to cause a segfault $x = "".("".do{"foo" for (1)}); print "ok 13\n";