I am looking for some help with a Perl/Tk script I am writing.

I want to wrap some Tk around a UNIX text based program. The UNIX program takes input from STDIN as a command line and results are returned to STDOUT. (The UNIX program is TCL based and behaves very similiar to `tclsh`)

What I had in mind was to create a TK-Entry box for input, then feed that to the UNIX program. Then the UNIX program would feed its output to a TK-text box.

What would be the perl code to start the UNIX program and send data back and forth to it? Is it a PTTY?

If there are some examples out there, please let me know. I think the Tk would look like this:

#!/usr/bin/perl use Tk; require Tk::NoteBook; my $mw = MainWindow->new; $nb = $mw->NoteBook()->pack(-side => 'bottom', -expand => 1, -fill => +'both'); $entry = $mw->Entry()->pack(-side => 'bottom', -expand => 1, -fill => +'both'); $tab1 = $nb->add('tab1', -label => 'tab1'); $t1 = $tab1->Scrolled("Text")->pack(-expand => 1, -fill => 'both'); MainLoop;

In reply to Perl/Tk Unix Question by gator456

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.