Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    
    # and output them all
    print join("\n",@foundfiles), "\n";
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    foreach (@searchfiles) {
      print $files{ $_ } if (exists $files{ $_ });
    };