0
#!/usr/local/bin/perl
use Tk;
# Main Window
$mw = new MainWindow;
$label = $mw -> Label(-text=>"Hello folks") -> pack();
$button = $mw -> Button(-text => "Click here to Flush rules",
                -command =>\&flush) -> pack();
MainLoop;

sub flush {
$mw->messageBox(-message=>"Initiating flushing.. click on OK button");
system ("iptables -L");
system ("iptables -F");
system ("iptables -L");
}

我编写了这段代码,它的作用是当用户单击按钮时会出现一个消息框

在此处输入图像描述

然后,当我单击“确定”按钮时,它会调用子例程flush,然后输出显示在终端上,如下所示:

在此处输入图像描述

我希望它出现在同一个消息框上。我该怎么做?

4

2 回答 2

1

  • 不要使用系统
  • 捕获 STDOUT/STDERR (qx, IPC::System::Simple, IPC::Run...)
  • 更新标签(就像更新 $textvariable 一样简单......例如,请参阅 Tk 演示程序小部件)

  • 于 2011-08-13T20:46:55.380 回答
    0

    我在 perlmonks 得到了这个问题的答案。

    perlmonks 的帖子链接是-> http://www.perlmonks.org/index.pl?node_id=920414

    #!/usr/bin/perl
    use warnings;
    use strict;
    use Tk;
    
    # Main Window
    my $mw = new MainWindow;
    $mw->geometry('+100+100');
    
    my $label = $mw -> Label(-text=>"Hello folks") -> pack();
    my $button = $mw -> Button(-text => "Click here to Flush rules",
                    -command =>\&flush) -> pack();
    MainLoop;
    
    
    sub flush {
    $mw->messageBox(-message=>"Initiating flushing.. click on OK button");
    # the script hangs here, until the messagebox OK button is pressed.
    
    my $text = $mw->Scrolled('Text')->pack();
    
    #my $out1 =  `iptables -L`;
    my $out1 =  `ls -la`;
    $text->insert('end',"$out1\n");
    $text->see('end');
    
    #my $out2 =  `iptables -F`;
    my $out2 =  `dir`;
    $text->insert('end',"$out2\n");
    $text->see('end');
    
    #my $out3 =  `iptables -L`;
    my $out3 =  `ps auxww`;
    $text->insert('end',"$out3\n");
    $text->see('end');
    }
    
    于 2011-08-17T14:09:51.990 回答