use IO::File; use IO::Seekable; $|++; # turn off buffering... my $handle = new IO::File; $handle->open("seek(12,0); while(<$handle>){ print; } $handle->close; ####