There's a charming example in the Perl Cookbook that ties global $_ so you get diagnostics when $_ is used globally (modified to be able to carp instead of croak if you want):
# croak on global underscore usage:
# no Underscore;
# carp on global underscore usage:
# no Underscore 'carp';
package Underscore;
use Carp ();
my $complain = \&Carp::croak;
sub TIESCALAR { bless \(my $dummy) => shift }
sub FETCH { $complain->("read access to \$_ forbidden") }
sub STORE { $complain->("write access to \$_ forbidden") }
sub unimport {
tie($_, __PACKAGE__);
$complain = \&Carp::carp if $_[1] eq 'carp';
}
sub import { untie $_ }
tie($_, __PACKAGE__) unless tied $_;
1;
And you save it as Underscore.pm and use it by just adding a
no Underscore; or
no Underscore 'croak'; . Or you can do it at the command line, of course, using
perl -M-Underscore myprog.pl or
perl -M-Underscore=carp myprog.pl
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.