in reply to Re^2: Binary Comparision
in thread Binary Comparision
How would I read the file other than into an array?
You can read the entire file into a scalar using the following snippet:
my $raw_data; { local $/; $raw_data = <FH>; }
Is there a way to access it a bit at a time?
Yes, using read.
|
|---|