Help for this page

Select Code to Download


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