On Sat, Sep 15, 2001 at 10:00:41AM -0700, Wagner-David wrote:
> while ( 1 ) {
> $filein = <*.txt>;
> last if ( ! defined $filein );
> # other processing
> }
Or you could be a little more concise:
while ($filein = <*.txt>) {
# other processing
}
Michael
--
Administrator www.shoebox.net
Programmer, System Administrator www.gallanttech.com
--
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
- Directory scan Anton Arhipov
- RE: Directory scan Wagner-David
- RE: Directory scan Michael Fowler
- RE: Directory scan Ron Rohrssen
