in reply to Opening an array of file names
my @fileNames = ( "manimp1.txt", "manimp2.txt" ); foreach my $file (@fileNames) { processFile($file); } sub processFile { my $fileName = shift; open (....) ... what is supposed to happen here? }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Opening an array of file names
by tnyflmngs (Acolyte) on Apr 04, 2012 at 02:58 UTC |