Help for this page
while (<$fh>) { ... }
while (defined($_ = <$fh>)) { ... }
while (<STDIN>) { s/\s+$//; last if /^(?:exit|quit)?$/i; ... }