http://www.perlmonks.org?node_id=1000891


in reply to Using wildcards to open files.

Do your file names have characters that need escaping or quoting, e.g. $cmd = "perl script.pl < '$file'";? Have you actually tested that the code as posted fails in your context? It works for me for some simple test systems.

The simplest solution from my perspective would be to avoid shelling and modify script.pl to process multiple files. That will give you access to the actual diagnostics and remove a layer of misdirection.

Update: If you can't modify script.pl for whatever reason, you can handle the file opens and piping yourself with something like:

#!/usr/bin/perl -w use strict; my @files = glob("*.msg"); foreach my $file(@files) { open my $in, '<', $file or die "Open fail on $file: $!\n"; my @lines = <$in>; open my $out, '|-', 'perl script.pl' or die "Piping fail: $!\n"; print $out @lines; }
Note that making those variables lexical to the loop (my) is significant, and you will likely need to explicitly close the filehandles otherwise. See |- in open or Safe Pipe Opens for some background.

#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.