Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Using wildcards to open files.

by kennethk (Abbot)
on Oct 25, 2012 at 15:48 UTC ( [id://1000891]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1000891]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-03-19 08:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found