in reply to Hex dump

I really dislike the "void map" there, for things like:
map {$_ = sprintf('%2.2x',$_)} @array;
What's wrong with simply:
$_ = sprintf "%2.2x", $_ for @array;
It even comes in at fewer characters, as well as running faster!

-- Randal L. Schwartz, Perl hacker