我正在尝试运行一个tcpstat命令,该命令提供有关接收到的icmp请求数的输出。同时我需要检查计数,以便如果它超过某个阈值,则应显示一条消息。
我试过这样的东西
#!/usr/bin/perl
my @count= system "tcpstat -i eth1 -f icmp[0]==8 -o %C";
my $i=0;
while ($i<1000)
{
print "count of packets is :".$count[$i]."\n";
$i=$i+1;
if($count[$i]>50)
{
print "thats a lot of pings";
}
}
但它似乎不起作用,因为......命令的执行不会在没有用户中断的情况下结束......
可以这样做吗?运行命令并同时对其输出执行操作?