in reply to Spawning Shell Commands
@output = `command`; [download]
open(PIPE, "command |") or die $!; while (<PIPE>) { print; # ..do something else } [download]