https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: d83d9d6574654d8a6cff738daf4371555e217ce0 authored by Trammell Hudson on 23 May 2009, 18:25:26 UTC
Attempt to stop lvae task
Tip revision: d83d9d6
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