Help for this page

Select Code to Download


  1. or download this
    while (<$IN>) {
        next if /^\s*$/;   # remove empty lines
    ...
        last if /File processed/;
        # ... now do the actual processing of useful lines
    }