Help for this page

Select Code to Download


  1. or download this
    foreach my $arg (@ARGV) {
      foreach (glob $arg) {
        print;
      }
    }
    
  2. or download this
    foeach (map { glob } @ARGV) {
      print;
    }