Help for this page
use IO::File; $f = new IO::File "filename.txt", "r";
while (<$f>) { ... do something here... }
undef $f;