Quote:
Originally Posted by jambesh
Try the perl script : -
==================
#!/usr/bin/ perl
open(FH,"log_fantastic") or dir ("Couldnt open file");
while(<FH>)
{
$rec=$_;
chomp ($rec);
@arr=split(/:/,$rec);
print $rec,"\n" if ($arr[5]!~/10/);
}
close(FH);
|
this works PERFECTLY. thanks a million.