while ($_ = getc STDIN) { $_ = ord $_; printf "%02x %c\n", $_, 32 <= $_ && $_ < 127 ? $_ : ord '?'; } [download]
In reply to Re: Re: File Input and Output by ariels in thread File Input and Output by root