http://qs321.pair.com?node_id=277168


in reply to reading output from another script

open my $pipe => "tail -f /syslog.log" or die "Fork failed: $!"; while (<$pipe>) { ... whatever ... }

But beaware of pipe buffers.

Abigail