- or download this
select( (select(STDERR), $|++)[0] );
- or download this
my @list = (select(STDERR), $|++);
select(@list[0]);
- or download this
my ($fh, $junk) = (select(STDERR), $|++);
select($fh);
- or download this
my $fh = select(STDERR);
my $junk = $|++;
select($fh);
- or download this
my $fh = select(STDERR);
$|++;
select($fh);