vote up 1 vote down star

I am using this script for a piped log setup in Apache 2:

#!/usr/local/bin/perl

$|=1; # Use unbuffered output
while (<STDIN>)
{
   if (<STDIN> =~ m/(.php|.html|.htm|.dhtml|.cpp|.h|.c|.txt|.pdf|.pl)$/)
      {system("beep");}
}

I am sending in the directive %f to give it the filename. As you can tell, it checks to see if the requested filename is a content file. If so, it tells the system to beep. For some reason however, the server only beeps every two times a content page is accessed. Does anyone know why this might happen?

I'm pretty sure it has to do with the way I'm using <STDIN>, because this is my first Perl script.

flag

2 Answers

vote up 4 vote down check

You read the first line with the while(), then you read another in the if().

Change the 'if' to: if($_ =~ ...)

link|flag
1  
Or just if (/(.php|.html|.htm|.dhtml|.cpp|.h|.c|.txt|.pdf|.pl)$/) perl assumes you mean to do the match on $_ if its not given. – Copas May 21 at 0:36
vote up 4 vote down

Try:

while ( <> ) {
  system("beep") if /php|pl.../;
}
link|flag
That looks a lot cleaner, but I don't see how the if statement is making a comparison. Wouldn't you need a ~= somewhere? Also, how come you replaced <STDIN> with just <>? – Cory Walker May 21 at 0:20
/REGEXP/ is equivalent to $~ =~ /REGEXP/ by default. <> means all files specified in the command line, or <STDIN> if no files were specified. – pts May 21 at 0:26
See perldoc perlvar. Look for ARGV. – Sinan Ünür May 21 at 0:27
Thanks, I finally got it after some trouble with a missing closing quote. – Cory Walker May 21 at 0:37
1  
@Cory: In the for loop each line of <STDIN> is split into the default variable $_ if you don't give perl anything to match against with a regular expression it assume that you want to perform the match on the default variable $_. This is part of why perl is so elegant/hated by people who don't use it. Its simplicity adds complication. – Copas May 21 at 0:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.