Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Can-o-Raid v1.0

by LAI (Hermit)
on May 15, 2003 at 16:37 UTC ( [id://258437]=note: print w/replies, xml ) Need Help??


in reply to Can-o-Raid v1.0

Well done, hacker. I've seen this sort of thing before... can't remember where... but the more the merrier! One patch for you: As stated, your script only ever uses the first url in the list for http:// links. This is because $numurl is set to the size of @url before @url is populated. This fixes it, plus condenses your foreach into a map, which is sexy.

######################################################### #my @url; my $time = localtime; print LOG "$time $ENV{'REMOTE_ADDR'} $ENV{'HTTP_HOST'}$ENV{'REQUEST_URI'}" . " $ENV{'HTTP_REFERER'} \"$ENV{'HTTP_USER_AGENT'}\"\n"; close LOG; $punct[1] = "."; $punct[2] = "!"; $punct[3] = "\?"; $punct[4] = ":"; #foreach (@domains) { # push @url, "${_}${ap_alias}"; #} # new code from LAI here: my $numurl = my @url = map { "${_}${ap_alias}" } @domains; #########################################################

LAI

__END__

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://258437]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (8)
As of 2024-04-19 09:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found