ops-1.02 > ops

名前

ops - Perl pragma to restrict unsafe operations when compiling

ops - コンパイル時に安全でない操作を制限する Perl プラグマ

概要

  perl -Mops=:default ...    # only allow reasonably safe operations

  perl -M-ops=system ...     # disable the 'system' opcode

説明

Since the ops pragma currently has an irreversible global effect, it is only of significant practical use with the -M option on the command line.

ops プラグマは現在のところ不可逆的にグローバルな効果があるため、 コマンドラインでの -M オプションを使った特に実際的な使用のみです。

See the Opcode module for information about opcodes, optags, opmasks and important information about safety.

opcode, optag, opmask に関する情報と安全性に関する重要な情報に関しては Opcode モジュールを参照してください。

SEE ALSO

Opcode, Safe, perlrun