Help for this page

Select Code to Download


  1. or download this
    foreach my $file (@file_list)
    {
    ...
    foreach my $file (@file_list){
       code here...
    }
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
       return unless (/\.jpg$/); # name ends in .jpg
       push (@jpg_files, $File::Find::name);
    }