Help for this page

Select Code to Download


  1. or download this
    # receive a list of filenames on stdin
    # (or from an intermediary file named on command line)
    ...
       chomp;
       # process a filename in $_
    }
    
  2. or download this
    # index loop
    for my $f (0 .. $#array)
    ...
    for my $g (@array)
    { ...
    }