Help for this page

Select Code to Download


  1. or download this
    use IO::Handle;
    # ...
    WRITE->autoflush(1);
    
  2. or download this
    $oldfh = select(WRITE);
    $| = 1;
    select($oldfh);