Help for this page

Select Code to Download


  1. or download this
    for my $next (@ARGV) {    
       opendir(PWD, "$next") and do {
    ...
          print join("\n", @files), "\n";    
       }
    }
    
  2. or download this
    foreach my $next (@ARGV) {    
       if (opendir(PWD, "$next")) {
    ...
          print join("\n", @files), "\n";    
       }
    }