2018
2011
Perle fraƮche - Linux Attitude
(via)Un chouette bouquin pour exploiter au mieux le CPAN, donc, dirait-on.
2010
An eight-line REPL in Perl.
(via)interesting, but a bit crude on the input (only raw, no history) and ...
@x = (paul john george ringo)
just prints out "4" :-/
you have to type "@x" to actually get the beatles displayed.
2009
Leaning toothpick syndrome - Wikipedia, the free encyclopedia
(via)When you wish " wasn't " but ' or whatever else ...
print qq|$text|;
m{ftp://[^/]*/pub/}
2008
inotify for Linux - Edoceo, Inc.
(via)given that you installed the package liblinux-inotify2-perl, you can quite simply get notifications in PERL. Here's how ^_^
nb: bindings also exists for python and ruby, and inotify-tools package provide watch & wait commands suitable for shell-scripters.
2007
XML::XPath - a set of modules for parsing and evaluating XPath statements - search.cpan.org
programmable expressions to access items in an XML document ... massively used in meta-workbench project.
2006
perl.com: Perl Command-Line Options
e.g. perl -n -e 'some code' file1
Then Perl will interpret that as:
LINE:
while (<>) {
# your code goes here
}
...
and much more of the like ^_^
1
(7 marks)