- or download this
for each line in File1,
look at each line in File2
and for each of the fields in the current line
...
otherwise -
fuggedaboudit
print out a report of all the stuff I remembered
- or download this
foreach (line in File1) {
look at each line in File2;
foreach (field in the current line) {
...
}
}
print out a report of all the stuff I remembered;
- or download this
my @files = ('File1','File2');
my $file;
foreach $file (@files) {
do stuff with $file ...
- or download this
foreach $file (File1..File2) {
do stuff with $file ...
- or download this
for (File1..File2) {
do stuff with $_ ...