https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 777d3ea46fbb9ced2746fc82f07188e537dabffa authored by hudson@kremvax.wan on 21 March 2010, 22:13:54 UTC
Functional beta for 2.0.4
Tip revision: 777d3ea
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