Perl
Perl is also known as the Duck Tape of the internet
“The duck tape of the internet” Google Search: “Software developers call Perl the “Duct Tape of the Internet” because the programming language lends itself to quick, easy fixes of data problems.”
Installing perl locally
Starting Server with perl support
Running perl
perl <filename.pl>
if you have a server that hosts perl then just navigate to it’s path via a browser.
Perl Tidy
This script will format .pl files
- Perl formatting is done with perltidy
Note: I used this once and currently maintain formatting manually.
For help: $ ./tools/perltidy.pl -h
To format code: $ ./tools/perltidy.pl <perlFile> -o <outputFile>
Example:
$ ./tools/perltidy.pl search-dev.pl -o search-dev-clean.pl
$ ./tools/perltidy.pl search-dev.cgi -o search-dev-clean.cgi
Other sections
Code
Journal
- 2020.07.27 Created file
- 2020-11-23 Relocated Perl Module sections to separate file