Tags: snippet perl io
Классический метод:
$oldfh = select(STDERR); $| = 1; select($oldfh);
ООП:
use IO::Handle; STDERR->autoflush(1);