Help for this page

Select Code to Download


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