Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
Date /
Delete
Unzip
Name
Size
Permission
Date
Action
Calc
[ DIR ]
drwxr-xr-x
2023-09-15 14:55
Calendar
[ DIR ]
drwxr-xr-x
2023-09-15 14:55
Language
[ DIR ]
drwxr-xr-x
2023-09-15 14:55
Manip
[ DIR ]
drwxr-xr-x
2023-09-15 14:55
Calc.pm
2.08
KB
-rw-r--r--
2015-03-07 20:06
Calc.pod
106.86
KB
-rw-r--r--
2015-03-07 20:06
Calendar.pm
6.37
KB
-rw-r--r--
2015-03-07 20:06
Calendar.pod
20.43
KB
-rw-r--r--
2015-03-07 20:06
Format.pm
9.42
KB
-rw-r--r--
2009-12-12 12:30
Language.pm
2.61
KB
-rw-r--r--
2020-05-19 17:30
Manip.pm
1.22
KB
-rw-r--r--
2021-03-01 20:03
Manip.pod
7.59
KB
-rw-r--r--
2021-03-01 20:03
Parse.pm
8.91
KB
-rw-r--r--
2020-05-19 17:37
Save
Rename
package Date::Manip; # Copyright (c) 2010-2021 Sullivan Beck. All rights reserved. # This program is free software; you can redistribute it and/or modify it # under the same terms as Perl itself. ########################################################################### ########################################################################### use warnings; use strict; use Exporter; our $VERSION; $VERSION='6.85'; our (@ISA,@EXPORT); my $backend; if ((exists $ENV{'DATE_MANIP'} && $ENV{'DATE_MANIP'} eq 'DM5') || (defined $Date::Manip::Backend && $Date::Manip::Backend eq 'DM5')) { $backend = 'Date::Manip::DM5'; } elsif ($] >= 5.010) { $backend = 'Date::Manip::DM6'; } else { $backend = 'Date::Manip::DM5'; } my $backend_exp = $backend . "::EXPORT"; my $flag = eval "require $backend; $backend->import(); return 'loaded';"; if (! $flag) { die "ERROR LOADING MODULE: $backend"; } { no strict 'refs'; @EXPORT = @{ $backend_exp }; } unshift (@ISA, $backend); 1; # Local Variables: # mode: cperl # indent-tabs-mode: nil # cperl-indent-level: 3 # cperl-continued-statement-offset: 2 # cperl-continued-brace-offset: 0 # cperl-brace-offset: 0 # cperl-brace-imaginary-offset: 0 # cperl-label-offset: 0 # End: