Revision fb60414d415b549b16a56bc9f96c1ca3ced89198 authored by Trammell Hudson on 17 May 2009, 22:00:47 UTC, committed by Trammell Hudson on 17 May 2009, 22:00:47 UTC
1 parent c86f01d
Raw File
string-dump
#!/usr/bin/perl
use warnings;
use strict;

while(<>)
{
	my ($val) = /:\s*([0-9A-Fa-f]+)\s*/ or next;
	$val = hex $val;
	while( $val )
	{
		print chr( $val & 0xFF );
		$val >>= 8;
	}
}

print "\n";
back to top