Differences between revisions 3 and 4
Revision 3 as of 2022-09-26 19:25:51
Size: 531
Comment:
Revision 4 as of 2022-09-26 21:34:14
Size: 906
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
'''Perl''' is a scripting language for Unix systems. It borrowed and built upon the syntax of Unix tools like [[Ed|ed]] and [[Awk|awk]], and in turn inspired the '''PCRE''' ('''Perl Compatible Regular Expressions''') and '''PCRE2''' libraries. '''`perl(1)`''' is a scripting language for Unix systems. It borrowed and built upon the syntax of Unix tools like [[Ed|ed]] and [[Awk|awk]], and in turn inspired the '''PCRE''' ('''Perl Compatible Regular Expressions''') and '''PCRE2''' libraries.
Line 19: Line 19:
Execute this file by running:

{{{
perl hello.pl
}}}

`perl(1)` is better known for its powerful yet obfuscated syntax, especially in the spirit of Bash one-liners.

{{{
perl <<<'print join " ", reverse split " ", "hacker, Perl another Just"'
}}}

Or more humorously:
{{{
perl <<<'$_="krJhruaesrltre c a cnP,ohet";$_.=$1,print$2while s/(..)(.)//;'
}}}

Perl

perl(1) is a scripting language for Unix systems. It borrowed and built upon the syntax of Unix tools like ed and awk, and in turn inspired the PCRE (Perl Compatible Regular Expressions) and PCRE2 libraries.

This article refers to Perl 5, not raku.


Example

print "Hello, World!\n";

Execute this file by running:

perl hello.pl

perl(1) is better known for its powerful yet obfuscated syntax, especially in the spirit of Bash one-liners.

perl <<<'print join " ", reverse split " ", "hacker, Perl another Just"'

Or more humorously:

perl <<<'$_="krJhruaesrltre c a cnP,ohet";$_.=$1,print$2while s/(..)(.)//;'


Servers and Applications


CategoryRicottone

Perl (last edited 2025-03-04 03:20:54 by DominicRicottone)