Help for this page

Select Code to Download


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