View Single Post
Old 04-15-2006, 01:10 AM   #5 (permalink)
ghostdog74
 
Newb Techie

Join Date: Apr 2006

Posts: 1

ghostdog74

Default

if you want it quick, you can write scripts to do it..such as this perl script
assuming your binary data are stored inside a text file

open(FH, "binaries.txt" ) or die $!;
@all = <FH>;
for my $bi (@all) {
@line = split(' ',$bi);
for my $line (@line){
print "$line" . " -> " . ord(pack('B8', $line)) . "\n";
}
}
close(FH);
ghostdog74 is offline