- 论坛徽章:
- 0
|
偶好好动了下脑筋,写了个
- #! /usr/bin/perl -w
- # read.pl
- use strict; use warnings;
- my $filename;
- if (!($filename=$ARGV[0])) {$filename = "Log.html"}
- open(FN,$filename)||die $!;
- my ($proj,$conf,$err,$warn);
- while(<FN>){
- if (/Project: (\w+), Configuration: (.*?)</){
- $proj="None" if !defined($proj=$1);
- $conf="None" if !defined($conf=$2);
- print "Project = ",$proj,"\nConfiguration = ",$conf,"\n";
- }
- if($proj && $_=~/$proj - (\d+) .*?(\d+)/){
- $err="None" if !defined($err=$1);
- $warn ="None" if !defined($warn=$2);
- print "error = ",$err,"\nwarning = ",$warn,"\n";
- }
- }
复制代码
你试试看,运行的时候,在shell下 ./read.pl Log.html
你的是linux吗?
8好意思,刚才有错,现在更正了,和89楼的一致了
[ 本帖最后由 perljoker 于 2007-9-25 17:28 编辑 ] |
|