update.pl
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. #!/bin/perl
  2. #
  3. #
  4. my ($filelist,$file,$result);
  5. my @f_list;
  6. # Change the path to the folder where you store the mrtg .cfg files
  7. $deleted=`del /F /Q c:\mrtg\conf\*_l`;  # this is to remove the _l files before running Mrtg
  8. $filelist=`dir /B c:\mrtg\conf\*.cfg`; # Get the list of the cfg files
  9. @f_list=split(/n/,$filelist);
  10. foreach $file (@f_list){
  11.     if($file||($file ne "File not Found")||($file=~/.cfg$/)){
  12. $result=`perl.exe e:\mrtg\bin\mrtg e:\mrtg\conf\$file`; # Run Mrtg for each host with a cfg file.
  13.     }
  14. }