1. Save the script.

    Here’s what each line of this Perl script does:
  • #!/usr/bin/perl

    print "Content-Type: text/html \n\n";

    print "Welcome to ACME AUTO";

    This first line states the location of the Perl module in your Web site. This module lets your Web server understand Perl commands.

    Contact the company/person who runs your Web server to be sure you have the correct path to the Perl module.

    In this case, the Perl module is in a directory on the Web server called perl, which is in the bin directory, which is contained within the usr directory.

    This path MUST be the first line of all your Perl scripts.