http://www.perlmonks.org?node_id=1003552


in reply to counting yesterdays hits in a logfile

I'm assuming you only need to count the number of hits as you say, not list them as you have done in your example. First you need the string for yesterdays date. This is one way but there are others....
use POSIX qw(strftime); $time= localtime(time-(24*60*60)); $yesterday = strftime( '%d/%m/%y', $time);
There are other and better ways using libraries such as Date::Calc to do the same thing.
`grep "$yesterday" logfile.log | wc -l`

Number of lines returned is the number of hits on your site. This command can be run inside a Perl script inside backticks.

However, the grep command exists in Perl too, so just read the file into an array and use the Perl grep command, as in scalar context it returns the number of matches.

open(LOGFILE,"<", "access.log")or die"Could not open log file."; my @logfile = <LOGFILE> my $hits = grep /$yesterday/, @logfile;
A Monk aims to give answers to those who have none, and to learn from those who know more.