First, start with
substr($0, 0, 1) ...
perlvar tells us that
$0 is the name of the program running ..
perlfunc tells us about
substr, and so this clause is getting the first letter of the program being run.
Now, let's look at
{qw(a - b = c ~ d ^)} .. This is creating a hashref, with a, b, c, d as the keys and the characters: - = ~ ^ as the values.. to see this, do:
perl -MData::Dumper -e 'print Dumper {qw(a - b = c ~ d ^)}'
# OUTPUT:
$VAR1 = {
'a' => '-',
'b' => '=',
'c' => '~',
'd' => '^'
};
And putting those together, you end up w/
$pat being one of those four values characters if the first letter of $0 is a, b, c, or d. Otherwise it will be undef.
why is this being done? I dunno -- would have to see the context.
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.