in reply to Re^2: Calling another script from Perl/Tkin thread Calling another script from Perl/Tk
open SCRIPT, "otherScript.pl |" or die "script failed: $!"; while (<SCRIPT>) { $resultsBox->insert('end', $_); } close SCRIPT; [download]