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

Re: Loop Break

by TomDLux (Vicar)
on Jan 19, 2012 at 18:33 UTC ( [id://948833]=note: print w/replies, xml ) Need Help??


in reply to Loop Break

There's enough up there about the correct use of glob() and of m{}.

I'd like to point out it's silly to glob on *.* and then ignore anything not matching *.c. Be more specific in the glob and you won't need the internal condition:

use 5.010; say for glob '*.c'; # or if you're doing more than using the filename once .. for my $file ( glob '*.c' ) { print $file, "\n"; lots_of_complicated_code( $file ); }

As Occam said: Entia non sunt multiplicanda praeter necessitatem.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-03-28 23:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found