XYZ File Manager
Current Path:
/usr/lib/x86_64-linux-gnu/perl/5.36.0
usr
/
lib
/
x86_64-linux-gnu
/
perl
/
5.36.0
/
📁
..
📁
B
📄
B.pm
(29.39 KB)
📁
CORE
📁
Compress
📄
Config.pm
(3.14 KB)
📄
Config.pod
(251.66 KB)
📄
Config_git.pl
(409 B)
📄
Config_heavy.pl
(54.46 KB)
📄
Cwd.pm
(20.78 KB)
📄
DB_File.pm
(65.43 KB)
📁
Data
📁
Devel
📁
Digest
📄
DynaLoader.pm
(25.41 KB)
📁
Encode
📄
Encode.pm
(31.45 KB)
📄
Errno.pm
(6.41 KB)
📄
Fcntl.pm
(3.89 KB)
📁
File
📁
Filter
📄
GDBM_File.pm
(20.22 KB)
📁
Hash
📁
I18N
📁
IO
📄
IO.pm
(1.43 KB)
📁
IPC
📁
List
📁
MIME
📁
Math
📄
NDBM_File.pm
(3.01 KB)
📄
O.pm
(4.19 KB)
📄
ODBM_File.pm
(2.9 KB)
📄
Opcode.pm
(15.98 KB)
📄
POSIX.pm
(19.91 KB)
📄
POSIX.pod
(80.68 KB)
📁
PerlIO
📄
SDBM_File.pm
(3.72 KB)
📁
Scalar
📄
Socket.pm
(36.16 KB)
📄
Storable.pm
(48.75 KB)
📁
Sub
📁
Sys
📁
Time
📁
Unicode
📄
_h2ph_pre.ph
(32 KB)
📁
asm
📁
asm-generic
📄
attributes.pm
(15.97 KB)
📁
auto
📁
bits
📄
encoding.pm
(22.41 KB)
📄
endian.ph
(3.54 KB)
📄
errno.ph
(23 B)
📄
features-time64.ph
(811 B)
📄
features.ph
(14.84 KB)
📁
gnu
📄
lib.pm
(5.99 KB)
📁
linux
📁
machine
📄
mro.pm
(9.61 KB)
📄
ops.pm
(997 B)
📄
re.pm
(28.04 KB)
📄
signal.ph
(3.61 KB)
📄
stdarg.ph
(2.8 KB)
📄
stdc-predef.ph
(1.19 KB)
📄
stddef.ph
(12.26 KB)
📁
sys
📄
syscall.ph
(86 B)
📄
sysexits.ph
(1.26 KB)
📄
syslimits.ph
(452 B)
📄
syslog.ph
(85 B)
📁
threads
📄
threads.pm
(37.06 KB)
📄
unistd.ph
(10.12 KB)
📄
wait.ph
(83 B)
Editing: ops.pm
package ops; our $VERSION = '1.02'; use Opcode qw(opmask_add opset invert_opset); sub import { shift; # Not that unimport is the preferred form since import's don't # accumulate well owing to the 'only ever add opmask' rule. # E.g., perl -Mops=:set1 -Mops=:setb is unlikely to do as expected. opmask_add(invert_opset opset(@_)) if @_; } sub unimport { shift; opmask_add(opset(@_)) if @_; } 1; __END__ =head1 NAME ops - Perl pragma to restrict unsafe operations when compiling =head1 SYNOPSIS perl -Mops=:default ... # only allow reasonably safe operations perl -M-ops=system ... # disable the 'system' opcode =head1 DESCRIPTION Since the C<ops> pragma currently has an irreversible global effect, it is only of significant practical use with the C<-M> option on the command line. See the L<Opcode> module for information about opcodes, optags, opmasks and important information about safety. =head1 SEE ALSO L<Opcode>, L<Safe>, L<perlrun> =cut
Upload File
Create Folder