Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: STUPID STUPID STUPID old me.

by grantm (Parson)
on Oct 28, 2002 at 09:17 UTC ( [id://208471]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    foreach my $file (</pathname/*>) {
        if( ($file ne "index.html") && ($file ne ".")
        && ($file ne "..") && ($file ne "cgi-bin") ) {$files = 1}
    }
    
  2. or download this
      my @files = grep(!/^(\.\.?|index\.html|cgi-bin)$/, </pathname/*>);
      if(@files) {
        # send email
      }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 23:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found