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 …
21
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 …
13
votes
Perl - Common gotchas?
This is a meta-answer. A lot of nasty gotchas are caught by Perl::Critic, which you can install and run from the command li …
