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.
In reply to Re^3: Binary Comparision
by ikegami
in thread Binary Comparision
by punklrokk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |