webengine/osswebengine/cache/filter_log.pl
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 24 Nov 2009 09:02:20 +0200
changeset 22 9a9a761f03f1
parent 18 a758fa0cb043
child 25 0ed94ceaa377
permissions -rw-r--r--
Revision: 200941 Kit: 200948

#!/usr/bin/perl

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

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