Greetings
A friend, now deceased, wrote a perl variant of the venerable 'cal' program so that I could have a calendar with week numbers AND be able to see some 5 years of calendar easily - - - all at once!!
Except now (I only use this gift occasionally) when I tried to execute the program - - - well - - - its barfing!
See first the part of the code in question:
foreach my $arg (@ARGV) {
if( $arg =~ /^-B(\d+)$/ ) { # months Before
$before = $1;
} elsif( $arg =~ /^-B$/ ) {
$before = shift( @ARGV );
if( $before !~ /^\d+/ ) {
die "Bad before argument ($before)\n";
}
and the resultant (when I try to run the program)
/$ /usr/local/bin/cal2.pl -B 4
Uncaught exception from user code:
Bad before argument (-B)
This were good in 5.34. I tried looking in the release notes for changes and (well - - - I'm no programmer - - - sorry)
I can't spot anything that would be relevant to my issue.
TIA
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.