Help for this page

Select Code to Download


  1. or download this
    my $fh = param('FILENAME');
    while (<$fh>) {
        do_stuff_with($_);   # manipulate the file line by line
    }