[Solved] perl read multiple file
The glob function will allow you to retrieve a list of files names that match a certain pattern. If you load that list into @ARGV, then you can process all the files–even in order with a single loop: use strict; use warnings; use Getopt::Long; sub usage ($) { my $msg = shift; die <<“END_MSG”; *** … Read more