The perl built-in is select(), which is a pass-through to the select() system call, but for sane people I recommend 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";
      }
    }