http://qs321.pair.com?node_id=99284


in reply to Re: File Input and Output
in thread File Input and Output

getc. Note well the documentation -- it's still buffered input!

ObSampleCode:

while ($_ = getc STDIN) { $_ = ord $_; printf "%02x %c\n", $_, 32 <= $_ && $_ < 127 ? $_ : ord '?'; }