in reply to Re: BIN to HEXin thread BIN to HEX
If the file is binary, you should add:
binmode MYFILE; [download]
if ($byte > 0x30) { [download]
if (ord($byte) > 0x30) { [download]