Help for this page

Select Code to Download


  1. or download this
    open( FH, "<some/path.name" );
    while (<FH>) {
       ...
    }
    close FH;
    
  2. or download this
    my $fh = myOpen( "<", "some/path.name" );
    while (<$fh>) {
       ...
    }
    close $fh;