If I'm reading from a file (suppose that it haves 1124 bytes) in this way:


open IN, "data2.txt" or die $!;
$/ = \512;
while( my $block = <IN> )
{
...
}

1) Two iterations reads 1024 bytes. The third iteration is possible? How can I read the last 100 bytes?
2) Is there any way to change dinamically $/ ? (i.e., to read different number of bytes in each iteration)


Thanks in advance,
Christian




_________________________________________________________________
Charla con tus amigos en línea mediante MSN Messenger: http://messenger.yupimsn.com/



-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to