Revision ebef9db770b949ff44442a7de8c0bb23039090d0 authored by Trammell Hudson on 17 May 2009, 05:22:01 UTC, committed by Trammell Hudson on 17 May 2009, 05:22:01 UTC
1 parent 15f8548
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