Help for this page
open FILE, "<$file" or die $!; binmode FILE; ... my @header = unpack( "s50c150", $line ); $string = join '', map{ chr($_) } @header[50..149]; # etc, etc...
read FILE, $line, sizeof("s50c150"); unpack( "s50c150", $line );