Search Results

14
votes

How to elegantly print the date in RFC822 format in Perl

use POSIX qw(strftime); print strftime("%a, %d %b %Y %H:%M:%S %z", localtime(time())) . "\n"; …
6
votes

What are the best resources to start learning Perl?

I find the Camel Book most useful as reference, but you also have to realize that ~95% of its contents is word for word taken from perldoc. If you need a concise, show me the basics, …
0
votes

Why can’t I write @F[1..-1] to get elements 1..last?

The [] operator will accept either a single index or a range. -1 is accepted as index to mean the index of last element. The proper way is $#F. A range of 1..-1 is empty, and that i …