15
votes
Perl Challenge - Directory Iterator
This sounds like a job for File::Find::Rule:
#!/usr/bin/perl
use strict;
use warnings;
use autodie; # C …
4
votes
What’s the best way to open and read a file in Perl?
Having to write 'or die' everywhere drives me nuts. My preferred way to open a file looks like this:
use autodie;
open(my $image_fh, '<', $filename);
While th …
12
votes
Is there a difference between Perl’s shift versus assignment from @_ for subroutine parameters?
At least on my systems, it seems to depend upon the version of Perl and architecture:
#!/usr/bin/perl -w
use strict;
use warnings;
use autodie;
use Benchmark qw( cmpthese );
print …
