1ops(3pm) Perl Programmers Reference Guide ops(3pm)
2
3
4
6 ops - Perl pragma to restrict unsafe operations when compiling
7
9 perl -Mops=:default ... # only allow reasonably safe operations
10
11 perl -M-ops=system ... # disable the 'system' opcode
12
14 Since the ops pragma currently has an irreversible global effect, it is
15 only of significant practical use with the "-M" option on the command
16 line.
17
18 See the Opcode module for information about opcodes, optags, opmasks
19 and important information about safety.
20
22 Opcode(3), Safe(3), perlrun(3)
23
24
25
26perl v5.8.8 2001-09-21 ops(3pm)