Hello ric00015, redirecting STDIN is a little bit harder due to blocking I/O. You might be able to fork a sub-process in the TK program that feeds the external program (which is still running in the same parent process) -- ultra fragile!
Since you can modify the external script, you might be able to read alternatively from STDIN or an @EXT_INPUT array exported from the Tk program to the other one -- and again -- better do not follow/implement this concept!

I strongly suggest to refactor your Perl program collection.
You get something that is easier to maintain and to test. It's a little bit more work in the beginning, though - but if you have to extend and maintain this collection for a while, it will return your investment soon.

Your modified version of the script would use a module and than invoke the sub or object-method with parameters taken from the command-line or ENVironment. Your current programs become wrapper, not Modulinos.
Perhaps you should also have a look at App::Cmd for further inspiration?

Update: Perhaps also useful: OT: Rewrite or Refactor?


In reply to Re^3: I want to run a script from another script, use the same version of perl, and reroute IO to a terminal-like textbox by Perlbotics
in thread I want to run a script from another script, use the same version of perl, and reroute IO to a terminal-like textbox by ric00015

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.