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 /
ext /
arybase /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
aeach.t
586
B
-r--r--r--
2014-12-27 11:48
aelem.t
1009
B
-r--r--r--
2014-12-27 11:48
akeys.t
705
B
-r--r--r--
2014-12-27 11:48
arybase.t
896
B
-r--r--r--
2014-12-27 11:48
aslice.t
1.07
KB
-r--r--r--
2014-12-27 11:48
av2arylen.t
383
B
-r--r--r--
2014-12-27 11:48
index.t
457
B
-r--r--r--
2014-12-27 11:48
lslice.t
910
B
-r--r--r--
2014-12-27 11:48
pos.t
596
B
-r--r--r--
2014-12-27 11:48
scope.t
520
B
-r--r--r--
2014-12-27 11:48
scope_0.pm
69
B
-r--r--r--
2014-12-27 11:48
splice.t
1.29
KB
-r--r--r--
2014-12-27 11:48
substr.t
289
B
-r--r--r--
2014-12-27 11:48
Save
Rename
use warnings; no warnings 'deprecated'; use strict; use Test::More tests => 14; our @t = qw(a b c d e f); is $t[3], "d"; $[ = 3; is $t[3], "a"; { is $t[3], "a"; $[ = -1; is $t[3], "e"; $[ = +0; is $t[3], "d"; $[ = +1; is $t[3], "c"; $[ = 0; is $t[3], "d"; } is $t[3], "a"; { local $[ = -1; is $t[3], "e"; } is $t[3], "a"; { ($[) = -1; is $t[3], "e"; } is $t[3], "a"; use t::scope_0; is scope0_test(), "d"; is eval(q{ $[ = 3; BEGIN { my $x = "foo\x{666}"; $x =~ /foo\p{Alnum}/; } $t[3]; }), "a"; 1;