in reply to Tear it apart...select()
select( (select(STDERR), $|++)[0] );
my @list = (select(STDERR), $|++); select(@list[0]);
my ($fh, $junk) = (select(STDERR), $|++); select($fh);
my $fh = select(STDERR); my $junk = $|++; select($fh);
my $fh = select(STDERR); $|++; select($fh);
Makeshifts last the longest.
|
|---|