Help for this page
use strict; use warnings; ... 8 9 10
while ( <FH> ) { next unless length; # Skip blank lines ... # Do something useful here }
while ( <FH> ) { if ( length ) { ... } } }