in reply to Perl:TK - standard output to text widget

If you want to dump all output to the text object, try the backticks command:
my $out = `command`; $text->insert('end', $out);
If you want to process things line by line, try opening a pipe:
open OUT "command |" or die "Could not open command: $!\n"; while (my $line = <OUT>) { # process $line ... $text->insert('end', $line); }

-Mark