Help for this page

Select Code to Download


  1. or download this
    sub do_stuff {
       my $full_path_to_file = $File::Find::name;
    ...
    #or
    
    find(\&do_stuff, $start_dir);
    
  2. or download this
    print "The number of people was: $count.\n";
    
  3. or download this
    for my $val (@vals) {
        ...
        ...
    }
    
  4. or download this
    use strict;
    use warnings;
    use 5.010;  #if using perl 5.10+