I have 9 txt files which I need to process.
I want to put those 9 file's names in a text and feed it to the perl program
for example:
inside file_feed.txt I would have
file1.txt
file2.txt
....
file9.txt
how I can create the loop?
for 1 txt file (if I were only using file1.txt) this is what I do
open(INFILE, $ARGV[0] ) or die "Can't open file: $!";
while(<INFILE>) {
do stuff
}
close INFILE
how I can create the loop?
I want to put those 9 file's names in a text and feed it to the perl program
for example:
inside file_feed.txt I would have
file1.txt
file2.txt
....
file9.txt
how I can create the loop?
for 1 txt file (if I were only using file1.txt) this is what I do
open(INFILE, $ARGV[0] ) or die "Can't open file: $!";
while(<INFILE>) {
do stuff
}
close INFILE
how I can create the loop?