[Purdue-pm] help!

Mark Senn mark at ecn.purdue.edu
Wed May 16 09:48:57 PDT 2012


  > open(FH, "$base/m10.html");

I'd debug this by starting with checking that the file
got opened successfully:

    my $fn = "$base/m10.html";
    open FH, '<', $fn  or  die qq/Can't open "$fn" for input: $!.\nStopped/;

-mark


More information about the Purdue-pm mailing list