Help for this page

Select Code to Download


  1. or download this
    sub scanfile ($) {
       my $filename= shift;
    ...
       open $handle, '<', $filename  or croak "can't open file [$filename]
    + ";
       return scan (<$handle>);
       }