Thread File::Find Warnings
(11 answers)
Opened by bianca at 2013-04-04 21:30
use diagnostics
Quote Code (perl): (dl
)
1 2 3 4 5 6 my $file_find_wanted = sub { if (-f $File::Find::name) { $work{gefunden} ++; } } find($file_find_wanted, ('/www')); Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |