From: "Jan Dubois" <jand@activestate.com>
Message-ID: <
01f101c820d0$df6c9220$9e45b660$@com>
p4raw-id: //depot/perl@32234
open my $fh, "<", $file
or do { warn "Could not open input file $file: $!"; exit 0 };
- binmode $fh;
my $str = do { local $/; <$fh> };
### unpack?