show/hide this revision's text 3 Added links

The perl Perl built-in is select()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";
  }
}
show/hide this revision's text 2 added a code sample

The perl built-in is select(), which is a pass-through to the select() system call, but for sane people I recommend IO::Select

From IO::Select POD

Code sample:

The

#!/usr/bin/perl

use IO::Select;

$s = IO::Select->new();
$s->add(\*STDIN);

while (++$i) {
  print "IO::Select" package implements an object approach to
the system Hiya $i!\n";
  sleep(5);
  if ($s->can_read(.5)) {
    chomp($foo = <STDIN>);
    print "select" function call. It allows the user to
see what IO handles, see the IO::Handle manpage, are ready
for reading, writing or have an error condition pending.Got '$foo' from STDIN\n";
  }
}
show/hide this revision's text 1

The perl built-in is select(), which is a pass-through to the select() system call, but for sane people I recommend IO::Select

From IO::Select POD:

The "IO::Select" package implements an object approach to the system "select" function call. It allows the user to see what IO handles, see the IO::Handle manpage, are ready for reading, writing or have an error condition pending.