Help for this page
open SRC, "$source"; open IDX, ">$source.offset"; ... while(<SRC>) { print IDX pack 'N', tell SRC; }
use CGI; $source = $INC{'CGI.pm'};
my $line = 2990; open IDX, "$source.offset"; ... open SRC, "$source"; seek SRC, $offset, 0; print "Line $line is:\n", scalar <SRC>;