[select]: http://perldoc.perl.org/functions/select.html
[IO::Select]: http://search.cpan.org/dist/IO/lib/IO/Select.pm
The Perl built-in is [`select()`][select], which is a pass-through to the `select()` system call, but for sane people I recommend [`IO::Select`][IO::Select].

Code sample:

    #!/usr/bin/perl
    
    use IO::Select;
    
    $s = IO::Select->new();
    $s->add(\*STDIN);
    
    while (++$i) {
      print "Hiya $i!\n";
      sleep(5);
      if ($s->can_read(.5)) {
        chomp($foo = <STDIN>);
        print "Got '$foo' from STDIN\n";
      }
    }