Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    my $base = "c:/blub";
    find( sub { push(@dateien, $File::Find::name) }, $base );
    
  2. or download this
    my $ext = "html|php";
    
  3. or download this
    my $dirs = "/cgi-bin|log";
    
  4. or download this
    /\.($ext)$/i;