Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Shell expansion with is funky

by chipmunk (Parson)
on Jan 25, 2002 at 07:44 UTC ( [id://141419]=note: print w/replies, xml ) Need Help??


in reply to Shell expansion with <> is funky

This syntax works pretty much as I would expect, opening the next file returned by the glob each time the subroutine is called. However, you're still going to have a problem, because no matter what you will run out of files, glob will return undef, the open will fail, and your script will die.

You should probably be doing something more like this:

sub foo { defined($file = <abc*>) or return; open(FH, $file) or die $!; ... }
However, I suspect that you may be creating the files after you have executed the glob the first time. perlop explains why this won't work as you intend:
A glob evaluates its (embedded) argument only when it is starting a new list. All values must be read before it will start over. In a list context this isn't important, because you automatically get them all anyway. In scalar context, however, the operator returns the next value each time it is called, or a undef value if you've just run out.
If that's the issue, you should not be using glob; you should keep track of the files when you create them, pulling the names from an internal list rather than globbing the file system.

Log In?
Username:
Password:

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

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

    No recent polls found