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 /
lib /
feature /
Delete
Unzip
Name
Size
Permission
Date
Action
bundle
2.3
KB
-r--r--r--
2014-12-27 11:49
implicit
2.2
KB
-r--r--r--
2014-12-27 11:49
nonesuch
544
B
-r--r--r--
2014-12-27 11:49
say
1.85
KB
-r--r--r--
2014-12-27 11:49
switch
3.88
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
Check feature bundles. __END__ # Standard feature bundle use feature ":5.10"; say "Hello", "world"; EXPECT Helloworld ######## # Standard feature bundle, no 5.11 use feature ":5.10"; say ord uc chr 233; EXPECT 233 ######## # Standard feature bundle, 5.11 use feature ":5.11"; say ord uc chr 233; EXPECT 201 ######## # Standard feature bundle, 5.11 use feature ":5.11"; use utf8; say ord "\ué"; # this is utf8 EXPECT 201 ######## # more specific: 5.10.0 maps to 5.10 use feature ":5.10.0"; say "Hello", "world"; EXPECT Helloworld ######## # as does 5.10.1 use feature ":5.10.1"; say "Hello", "world"; EXPECT Helloworld ######## # as does 5.10.99 use feature ":5.10.99"; say "Hello", "world"; EXPECT Helloworld ######## # 5.9.5 also supported use feature ":5.9.5"; say "Hello", "world"; EXPECT Helloworld ######## # 5.9 not supported use feature ":5.9"; EXPECT OPTIONS regex ^Feature bundle "5.9" is not supported by Perl \d+\.\d+\.\d+ at - line \d+ ######## # 5.9.4 not supported use feature ":5.9.4"; EXPECT OPTIONS regex ^Feature bundle "5.9.4" is not supported by Perl \d+\.\d+\.\d+ at - line \d+ ######## # 5.8.8 not supported use feature ":5.8.8"; EXPECT OPTIONS regex ^Feature bundle "5.8.8" is not supported by Perl \d+\.\d+\.\d+ at - line \d+ ######## # :default BEGIN { *say = *state = *given = sub { print "custom sub\n" }; } use feature ":default"; say "yes"; state my $foo; given a => chance; EXPECT custom sub custom sub custom sub ######## # :default and $[ # SKIP ? not defined DynaLoader::boot_DynaLoader no feature; use feature ":default"; $[ = 1; print qw[a b c][2], "\n"; use feature ":5.16"; # should not disable anything; no feature ':all' does that print qw[a b c][2], "\n"; no feature ':all'; print qw[a b c][2], "\n"; use feature ":5.16"; print qw[a b c][2], "\n"; EXPECT Use of assignment to $[ is deprecated at - line 4. b b c c ######## # "no feature" use feature ':5.16'; # turns array_base off no feature; # resets to :default, thus turns array_base on $[ = 1; print qw[a b c][2], "\n"; EXPECT Use of assignment to $[ is deprecated at - line 4. b ######## # "no feature 'all" $[ = 1; print qw[a b c][2], "\n"; no feature ':all'; # turns array_base (and everything else) off $[ = 1; print qw[a b c][2], "\n"; EXPECT Use of assignment to $[ is deprecated at - line 2. Assigning non-zero to $[ is no longer possible at - line 5. b