Help for this page

Select Code to Download


  1. or download this
    use File::Glob qw( bsd_glob );
    
    ...
    # Output
    print("$_\n")
       foreach @matching_files;
    
  2. or download this
    use File::Glob qw( bsd_glob );
    
    ...
    # Output
    print
       foreach @matching_lines;
    
  3. or download this
    use File::Glob qw( bsd_glob );
    
    ...
    # Output
    print($_->[0], ',', $_->[1], ': ', $_->[2])
       foreach @matches;