www.perl.com
Perl Programming
Overview
  • Perl code is written in plaintext
    • Use your favorite text editor (emacs, vi, etc.) to enter code
    • emacs has a perl mode (M-x perl-mode) to assist with formatting
  • Running Perl programs
    • Programs may be run by perl interpreter
    • Programs may be made executable

        % perl my_program

        % chmod u+x my_program
        % my_program
      
http://stuff.mit.edu/iap/perl/