Help for this page

Select Code to Download


  1. or download this
    my $output_filename="OUTPUT.001";
    
    ...
        do_stuff($filename, $output_filename);
        ++$output;
    }
    
  2. or download this
    for my $filename (@filelist) {
        my $output_filename = $filename . ".processed";
        do_stuff($filename, $output_filename);
    }