Help for this page

Select Code to Download


  1. or download this
    my $out = `command`;
    $text->insert('end', $out);
    
  2. or download this
    open OUT "command |"
       or die "Could not open command: $!\n";
    ...
       # process $line ...
       $text->insert('end', $line);
    }