Help for this page
while (<FILE>) { chomp; ... next if /^$/; # skip blank lines (or, commented out lines) do_something_with($_); }