I assume you refer to messages like:
Use of uninitialized value at ./foo.pl line 7, <BAR> chunk 198.
This warning indicates that you used an uninitialized variable at line 7 in your script. The chunk refers to the last chunk just read from filehandle BAR. The chunk number depends on what kind of chunks you read in (default is that 1 chunk = 1 line). You can change what a chunk is by assigning the variable $/.

The chunk part of the warning is meant to help you to find out where you were in the currently opened file when the warning occured.

BAR does not have to be a file, but can also be a socket handle, directory handle etc. (in UNIX everything is a file :-) )

So chunk doesn't say much about what kind of warning/error it is - you use the message for that.

You can use diagnostics to get verbose help for your warning/error messages

#!/usr/bin/perl -w use diagnostics; # Force a warning $foo = 1;
Autark.

In reply to RE: chunk! by autark
in thread chunk! by vnpandey

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.