> #!/bin/sh > VIRCOUNT=`grep -c FOUND /wherever/is/your/clamd.log` I blend in a little perl to print per-virus totals sorted by name:
grep VIRUS /var/log/messages | perl -e 'while(<>){ $_ =~ /VIRUS:(.*)\)/; $v = $1; $hash{$v}++;} foreach $x (sort(keys(%hash))){ print "$x: $hash{$x} \n";}' (Note that this is taken from syslog while using amavisd, not clamd's log.) -- John Madden UNIX Systems Engineer Ivy Tech State College [EMAIL PROTECTED] ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click _______________________________________________ Clamav-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/clamav-users