webengine/osswebengine/cache/filter_log.pl
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 26 Oct 2009 08:28:45 +0200
changeset 15 60c5402cb945
parent 10 a359256acfc6
child 18 a758fa0cb043
permissions -rw-r--r--
Revision: 200941 Kit: 200943

#!/usr/bin/perl

open INH,"<",$ARGV[0];
open OUTH,">",$ARGV[1];

foreach $line (<INH>){
  if($line =~ m/CACHEPOSTPONE:/)
  {
    print OUTH $line;
  }
}