> > Hi, > I'm new in Perl, and I need to analyze a binary file, byte per byte. > > $/ = undef; > open FILE, "file.bin" or die $!; > binmode FILE; > my $data = <FILE>; > > is that ok? how can I get one byte, the next, the next, etc?
perldoc -f sysread -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]