Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    my @zips = map { sprintf $filename_template, $tmp, $_ } (1 .. 5);
    print Dumper(\@zips);
    
  2. or download this
    __OUTPUT__
    $VAR1 = [
    ...
              './tmp/file04.zip',
              './tmp/file05.zip'
            ];