Help for this page
$all_the_output = `my_shell_command`;
$pid = open(PIPE, "my_shell_command |") or die; while ($line = <PIPE>) { ... } } ...