Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -- -*-fundamental-*- ## Resume logger ## Greg Sabino Mullane, greg@turnstep.com, 0x14964AC8 ## Note: your log format and mail program may vary: ## Try local 'sendmail' or use Mail::Mailer use strict; my($mail, $mailto, $mailfrom, $subject); my($accesslog, $resumelog, $mydomain, $mypage); my(@fresh, %seenit, %seenIP, %visits); my($x); $mail = "/usr/bin/mail"; ## Paranoia is a Good Thing $mailto = "resume\@example.com"; $mailfrom = qq["Abe Lincoln" <alincoln\@example.com>]; $subject = "More resume nibbles"; $accesslog = "/foo/bar/logs/access_log"; $resumelog = "/home/alincoln/jobs/resume.log"; $mydomain = "turnstep"; ## Use if server has >1 domain... $mypage = "/resume.html"; ## Load our old data: open(OLD, "+< $resumelog") || die "Could not open $resumelog: $!\n"; while(<OLD>) { $seenit{$_}++; ($x) = split(/ /,$_); $seenIP{$x}++; } ## Anything new in the logs? open(ACCESSLOG, "$accesslog") || die "Could not open $accesslog: $!\n" +; while(<ACCESSLOG>) { ## Crude match: refine if other pages contain $mypage next unless m/^$mydomain (.*?) (.*$mypage.*\n)/; $seenit{"$1 $2"} || push(@fresh, "$1 $2") && $visits{$1}++; } close(ACCESSLOG); ## Bail if nothing new: @fresh || exit; ## perl closes OLD for us. Isn't that nice? ## Add new entries to the end of OLD: print OLD @fresh; close(OLD); ## Mail it to us: open(MAILME, "| $mail -t $mailto") || die " Could not start $mail: $!\ +n"; print MAILME "From: $mailfrom\n"; print MAILME "Subject: $subject.\n\n"; for (@fresh) { ($x) = split(/ /, $_); $seenIP{$x} ||=0; print MAILME "\tThis time: $visits{$x} Prior: $seenIP{$x}\n$_\n\n"; } close(MAILME); exit;

In reply to Resume logger by turnstep

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (9)
As of 2024-03-28 09:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found