in reply to Shell expansion with <> is funky
You should probably be doing something more like this:
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:sub foo { defined($file = <abc*>) or return; open(FH, $file) or die $!; ... }
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.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.
|
---|