Help for this page

Select Code to Download


  1. or download this
    undef $/;
    my $bigfile = <$fh>;
    
    # Do some processing on $bigfile
    
  2. or download this
    while (my $line = <$fh>) {
        # Do some processing on $line
    }