Hackfut Security File Manager
Current Path:
/usr/lib64/perl5
usr
/
lib64
/
perl5
/
📁
..
📁
5.10.0
📁
B
📄
B.pm
(25.1 KB)
📁
CORE
📁
Compress
📄
Config.pm
(2.68 KB)
📄
Config.pod
(221.26 KB)
📄
Config_git.pl
(409 B)
📄
Config_heavy.pl
(38.48 KB)
📄
Cwd.pm
(20.67 KB)
📄
DB_File.pm
(62.05 KB)
📁
Data
📁
Devel
📁
Digest
📄
DynaLoader.pm
(24.45 KB)
📁
Encode
📄
Encode.pm
(29.03 KB)
📄
Errno.pm
(7.47 KB)
📄
Fcntl.pm
(5.32 KB)
📁
File
📁
Filter
📄
GDBM_File.pm
(1.78 KB)
📁
Hash
📁
I18N
📁
IO
📄
IO.pm
(1.37 KB)
📁
IPC
📁
JSON
📁
List
📁
MIME
📁
Math
📄
NDBM_File.pm
(2.46 KB)
📄
O.pm
(4.11 KB)
📄
Opcode.pm
(15.13 KB)
📄
POSIX.pm
(20.52 KB)
📄
POSIX.pod
(57.25 KB)
📁
PerlIO
📄
SDBM_File.pm
(2.46 KB)
📁
Scalar
📄
Socket.pm
(9.75 KB)
📄
Storable.pm
(40.03 KB)
📁
Sub
📁
Sys
📁
Text
📁
Time
📁
Unicode
📄
XSLoader.pm
(10.28 KB)
📄
_h2ph_pre.ph
(11.18 KB)
📁
asm
📁
asm-generic
📄
attrs.pm
(1.4 KB)
📁
auto
📁
bits
📄
encoding.pm
(19.43 KB)
📄
endian.ph
(4.06 KB)
📄
features.ph
(13.01 KB)
📁
gnu
📄
lib.pm
(6.69 KB)
📁
linux
📁
machine
📄
mro.pm
(10.84 KB)
📄
ops.pm
(997 B)
📄
perllocal.pod
(11.11 KB)
📄
re.pm
(14.47 KB)
📄
signal.ph
(4.02 KB)
📄
stdarg.ph
(2.88 KB)
📄
stddef.ph
(11.33 KB)
📁
sys
📄
syscall.ph
(86 B)
📄
syslimits.ph
(454 B)
📄
syslog.ph
(85 B)
📁
threads
📄
threads.pm
(33.58 KB)
📄
time.ph
(4.49 KB)
📁
vendor_perl
📁
version
📄
version.pm
(3.47 KB)
📄
version.pod
(9.6 KB)
📄
wait.ph
(83 B)
📄
xlocale.ph
(156 B)
Editing: version.pm
#!perl -w package version; use 5.006002; use strict; use warnings::register; if ($] >= 5.015) { warnings::register_categories(qw/version/); } our $VERSION = 0.9929; our $CLASS = 'version'; our (@ISA, $STRICT, $LAX); # !!!!Delete this next block completely when adding to Perl core!!!! { local $SIG{'__DIE__'}; eval "use version::vxs $VERSION"; if ( $@ ) { # don't have the XS version installed eval "use version::vpp $VERSION"; # don't tempt fate die "$@" if ( $@ ); push @ISA, "version::vpp"; local $^W; *version::qv = \&version::vpp::qv; *version::declare = \&version::vpp::declare; *version::_VERSION = \&version::vpp::_VERSION; *version::vcmp = \&version::vpp::vcmp; *version::new = \&version::vpp::new; *version::numify = \&version::vpp::numify; *version::normal = \&version::vpp::normal; if ($] >= 5.009000) { no strict 'refs'; *version::stringify = \&version::vpp::stringify; *{'version::(""'} = \&version::vpp::stringify; *{'version::(<=>'} = \&version::vpp::vcmp; *{'version::(cmp'} = \&version::vpp::vcmp; *version::parse = \&version::vpp::parse; } } else { # use XS module push @ISA, "version::vxs"; local $^W; *version::declare = \&version::vxs::declare; *version::qv = \&version::vxs::qv; *version::_VERSION = \&version::vxs::_VERSION; *version::vcmp = \&version::vxs::VCMP; *version::new = \&version::vxs::new; *version::numify = \&version::vxs::numify; *version::normal = \&version::vxs::normal; if ($] >= 5.009000) { no strict 'refs'; *version::stringify = \&version::vxs::stringify; *{'version::(""'} = \&version::vxs::stringify; *{'version::(<=>'} = \&version::vxs::VCMP; *{'version::(cmp'} = \&version::vxs::VCMP; *version::parse = \&version::vxs::parse; } } } # avoid using Exporter require version::regex; *version::is_lax = \&version::regex::is_lax; *version::is_strict = \&version::regex::is_strict; *LAX = \$version::regex::LAX; *LAX_DECIMAL_VERSION = \$version::regex::LAX_DECIMAL_VERSION; *LAX_DOTTED_DECIMAL_VERSION = \$version::regex::LAX_DOTTED_DECIMAL_VERSION; *STRICT = \$version::regex::STRICT; *STRICT_DECIMAL_VERSION = \$version::regex::STRICT_DECIMAL_VERSION; *STRICT_DOTTED_DECIMAL_VERSION = \$version::regex::STRICT_DOTTED_DECIMAL_VERSION; sub import { no strict 'refs'; my ($class) = shift; # Set up any derived class unless ($class eq $CLASS) { local $^W; *{$class.'::declare'} = \&{$CLASS.'::declare'}; *{$class.'::qv'} = \&{$CLASS.'::qv'}; } my %args; if (@_) { # any remaining terms are arguments map { $args{$_} = 1 } @_ } else { # no parameters at all on use line %args = ( qv => 1, 'UNIVERSAL::VERSION' => 1, ); } my $callpkg = caller(); if (exists($args{declare})) { *{$callpkg.'::declare'} = sub {return $class->declare(shift) } unless defined(&{$callpkg.'::declare'}); } if (exists($args{qv})) { *{$callpkg.'::qv'} = sub {return $class->qv(shift) } unless defined(&{$callpkg.'::qv'}); } if (exists($args{'UNIVERSAL::VERSION'})) { local $^W; *UNIVERSAL::VERSION = \&{$CLASS.'::_VERSION'}; } if (exists($args{'VERSION'})) { *{$callpkg.'::VERSION'} = \&{$CLASS.'::_VERSION'}; } if (exists($args{'is_strict'})) { *{$callpkg.'::is_strict'} = \&{$CLASS.'::is_strict'} unless defined(&{$callpkg.'::is_strict'}); } if (exists($args{'is_lax'})) { *{$callpkg.'::is_lax'} = \&{$CLASS.'::is_lax'} unless defined(&{$callpkg.'::is_lax'}); } } 1;
Upload File
Create Folder