Help for this page

Select Code to Download


  1. or download this
    use strict;
    use vars qw/ $lines $blah1 $blah2 $blah3 /;
    
    ...
        }
        close (FILE);
    }
    
  2. or download this
    sub breakup_lines {
        open(FILE, "filename");
        while(<FILE>) {
    ...
        }
        close (FILE);
    }