Help for this page

Select Code to Download


  1. or download this
    use strict;
    my $filename = 'my_textfile.txt';
    ...
    
    print "Processing $_"
        for @ARGV;
    
  2. or download this
    use strict;
    use File::Find;
    ...
    
    print "Processing $_"
        for @ARGV;
    
  3. or download this
    use strict;
    use File::DosGlob qw(bsd_glob); # to get sane whitespace semantics
    ...
    
    print "Processing $_"
        for @ARGV;