Help for this page

Select Code to Download


  1. or download this
    my $tx = $mw->Scrolled("Text", -width => 80,
                    -height => 25,
    ...
    open(CHILD, "ls -laR |") or die "Can't open: $!";
    CHILD->autoflush(1);
    $mw->fileevent('CHILD', 'readable', [\&output, \*CHILD, $mw, $tx]);
    
  2. or download this
    sub output {
        my ($handle, $widget, $tx) = @_;
    ...
        }
        $widget->idletasks;
    }