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.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.