6 Apr 2015

PERL

No comments :
1. 
 Short for Practical Extraction and Reporting Language, Perl is an interpreted free and open source programming language first developed by Larry Wall in 1987 that is similar to the C language. Perl is one of the more commonly used languages in writing CGI scripts and programming for Internet and web page applications. Below is an example of a Perl script that prints "Hello World!".

#!/usr/bin/perl
print "Hello World!\n";

Files that include Perl code on a web server may have any file extension; however, commonly end in .CGI, .PL, or .PLX.
If you're running a Linux distro, often Perl will already be installed on the computer. However, if you're using MacOS or Microsoft Windows you'll need to download and install a Perl client. We recommend ActiveState or Strawberry for Perl, found on the links below.



2.  Linux command, see the perl command page for further information and syntax of this command.

No comments :

Post a Comment