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 /
lib /
Time /
Delete
Unzip
Name
Size
Permission
Date
Action
.exists
0
B
-rw-r--r--
2016-10-10 17:40
HiRes.pm
21.88
KB
-r--r--r--
2014-12-27 11:48
Local.pm
11.81
KB
-r--r--r--
2014-12-27 11:48
Piece.pm
23.24
KB
-r--r--r--
2014-12-27 11:49
Seconds.pm
5.32
KB
-r--r--r--
2014-12-27 11:49
gmtime.pm
2.47
KB
-r--r--r--
2014-12-27 11:48
gmtime.t
602
B
-r--r--r--
2014-12-27 11:48
localtime.pm
2.29
KB
-r--r--r--
2014-12-27 11:48
localtime.t
638
B
-r--r--r--
2014-12-27 11:48
tm.pm
691
B
-r--r--r--
2014-12-27 11:48
Save
Rename
#!./perl use Test::More; my(@times, @methods); BEGIN { @times = (-2**55, -2**50, -2**33, -2**31-1, -1, 0, 1, 2**31-1, 2**33, 2**50, 2**55, time); @methods = qw(sec min hour mday mon year wday yday isdst); plan tests => (@times * (@methods + 1)) + 1; use_ok Time::gmtime; } for my $time (@times) { my $gmtime = gmtime $time; # This is the OO gmtime. my @gmtime = CORE::gmtime $time; # This is the gmtime function is @gmtime, 9, "gmtime($time)"; for my $method (@methods) { is $gmtime->$method, shift @gmtime, "gmtime($time)->$method"; } }