perl 中用shell.pm调用shell命令

perl 中用shell.pm调用shell命令

code:


  1. #!/usr/bin/perl -w 
  2.  
  3. use strict; 
  4. use Shell qw/webbench/; 
  5.  
  6. my @array = (); 
  7.  
  8. open FILE,'<','url.txt' or die "$!\n"; 
  9.  
  10. while (<FILE>) { 
  11.        chomp; 
  12.        /(\S+)/; 
  13.        push @array,$1; 
  14.  
  15. close FILE; 
  16.  
  17.  
  18. while (1) { 
  19.  
  20.        for my $url (@array) { 
  21.            my $sh = Shell->new; 
  22.            print $sh->webbench("-c 500 -t 60 $url"); 
  23.        } 
  24.  
  25. sleep 5 
  26.  

 本文转自dongfang_09859 51CTO博客,原文链接:http://blog.51cto.com/hellosa/507906,如需转载请自行联系原作者

上一篇:智能终端不装未成年人保护软件 厂商或面临高额罚款


下一篇:阿里云弹性计算专业认证 acp是什么?认证需要具备哪些知识?