http://www.perlmonks.org?node_id=1008867


in reply to Re^6: Offset Reading - two files
in thread Offset Reading - two files

You are trying to assign to $1 and $2 but these are special variables that are only set by successful regular expression match captures and are read-only otherwise (see Extracting matches). Use normal scalar variables with names that are something meaningful, like $offset and $reclen perhaps.

I hope this is helpful.

Cheers,

JohnGG