vmsish

Controls VMS-specific language features. Currently, there are four VMS-specific features available: status ($?), exit, time, and hushed. If you're not using VMS, then this module won't have any affect.

vmsish is shipped with the Perl 5.8 source kit.

For example, without vmsish, you can't execute a hushed version of exit:

$ perl -e"exit 44;" Non-hushed error exit %SYSTEM-F-ABORT, abort DCL message $ show sym $STATUS $STATUS == "%X0000002C"

When you use vmsish, you get . . . nothing!

$ perl -e"use vmsish qw(hushed); exit 44;"

vmsish implements the following options.