Search Results

9
votes
2answers
523 views

EWOULDBLOCK equivalent errno under Windows Perl

G'day Stackoverflowers, I'm the author of Perl's autodie pragma, which changes Perl's built-ins to throw exceptions on fa …
5
votes

How do you capture stderr, stdout, and the exit code all at once, in Perl?

If you don't want the contents of STDERR, then the capture() command from IPC::System::Simple module is almost exactl …
12
votes

Is there a Perl solution for lazy lists this side of Perl 6?

As mentioned previously, for(each) is an eager loop, so it wants to evaluate the entire list before starting. For simplicity, I would recommend using an iterator object or closure rather th …
9
votes

What is your latest useful Perl one-liner (or a pipe involving Perl)?

Squid log files. They're great, aren't they? Except by default they have seconds-from-the-epoch as the time field. Here's a one-liner that reads from a squid log file and converts the time into …
11
votes

How do I get a list of installed CPAN modules?

This is answered in the Perl FAQ, the answer which can be quickly found with perldoc -q installed. In short, it comes down to using ExtUtils::Installed or using Fil …
13
votes

When is the right time (and the wrong time) to use backticks?

A few people have already mentioned that you should only use backticks when: You need to capture (or supress) the output. There exists no built-in function or Perl module to …
1
vote

Intra-process coordination in mod_perl under the worker MPM

If you're using apache 1.3, then you shouldn't need to resort to mutexes. Apache 1.3 spawns of a number of worker processes, and each worker executes a single thread. In this case, you can write: …
9
votes

What constitutes effective Perl training for non-Perl developers?

I own and manage Perl Training Australia. I've been teaching Perl for about eight years, and computer science for over a decade. I'm have …
7
votes

Emulation of lex like functionality in Perl or Python.

If you're specifically after parsing links out of web-pages, then Perl's WWW::Mechanize module will figure things out for …
20
votes

Hidden features of Perl?

One of my favourite features in Perl is using the boolean || operator to select between a set of choices. $x = $a || $b; # $x = $a, if $a is true. # $x = $b, otherw …
16
votes

Hidden features of Perl?

This is a meta-answer, but the Perl Tips archives contain all sorts of interesting tricks that can be done with Perl. The archive of p …
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 …
14
votes

How can I add internationalization to my Perl script?

There is a Perl Journal article on software localisation. It will provide you with a good idea of what you can e …
19
votes

Why is my Perl regex using so much memory?

Just a quick sanity check, are you mentioning $&, $` or $' (sometimes called $MATCH, $PREMATCH and $POSTMATCH) anywhere in your code? If so, Perl will copy your entire string for every …
12
votes

Where are some good resources for learning the new features of Perl 5.10?

There's been a string of articles in Perl Tips about Perl 5.10: …

1 2 3 next
15 30 50 per page